diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml index aeb510b..2fbc99b 100644 --- a/.github/workflows/docker-image.yml +++ b/.github/workflows/docker-image.yml @@ -4,6 +4,10 @@ on: push: branches: ['main'] +concurrency: + group: "docker-${{ github.ref }}" + cancel-in-progress: true + # Defines two custom environment variables for the workflow. These are used for the Container registry domain, and a name for the Docker image that this workflow builds. env: REGISTRY: ghcr.io diff --git a/.github/workflows/wiki.yml b/.github/workflows/wiki.yml new file mode 100644 index 0000000..2d15466 --- /dev/null +++ b/.github/workflows/wiki.yml @@ -0,0 +1,19 @@ +name: Deploy to Wiki +on: + push: + branches: ['main'] + +concurrency: + group: "wiki-deploy-${{ github.ref }}" + cancel-in-progress: true + +jobs: + deploy-wiki: + permissions: + contents: write + runs-on: ubuntu-24.04 + steps: + - uses: actions/checkout@v4 + - uses: actions4gh/deploy-wiki@v1 + with: + path: ./docs