diff --git a/.github/workflows/extension.yml b/.github/workflows/extension.yml index f838a0be..2e3198d3 100644 --- a/.github/workflows/extension.yml +++ b/.github/workflows/extension.yml @@ -21,9 +21,6 @@ on: - "!extension/README.md" - "!docs/**" -concurrency: - group: ${{ github.workflow }} - jobs: Build: runs-on: ubuntu-latest @@ -111,6 +108,9 @@ jobs: runs-on: ubuntu-latest needs: [ Build ] + concurrency: + group: ${{ github.workflow }} + steps: - name: Download Artifact uses: actions/download-artifact@v4 diff --git a/.github/workflows/server.yml b/.github/workflows/server.yml index 423d99b5..e300cced 100644 --- a/.github/workflows/server.yml +++ b/.github/workflows/server.yml @@ -17,9 +17,6 @@ on: - ".github/workflows/server.yml" - "!docs/**" -concurrency: - group: ${{ github.workflow }} - env: AZURE_SUBSCRIPTION_ID: ${{ secrets.AZURE_SUBSCRIPTION_ID }} AZURE_RESOURCE_GROUP: ${{ secrets.AZURE_RESOURCE_GROUP }} @@ -158,12 +155,14 @@ jobs: draft: true allowUpdates: true - Deploy: runs-on: ubuntu-latest needs: Build if: ${{ github.actor != 'dependabot[bot]' && ((github.ref == 'refs/heads/main') || startsWith(github.ref, 'refs/tags')) }} + concurrency: + group: ${{ github.workflow }} + steps: - name: Download Artifact uses: actions/download-artifact@v4