From b16d5a6758fdee314e6df89f713e58b06b798edb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Valentin=20Breu=C3=9F?= Date: Sun, 9 Nov 2025 10:41:05 +0100 Subject: [PATCH] refactor: move needs from pack to push --- .github/workflows/build.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c53b26bb8..95c2ab0b4 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -200,7 +200,6 @@ jobs: pack: name: "Pack" runs-on: ubuntu-latest - needs: [ publish-test-results, static-code-analysis ] env: DOTNET_NOLOGO: true steps: @@ -227,7 +226,7 @@ jobs: if: ${{ startsWith(github.ref, 'refs/tags/v') }} runs-on: macos-latest environment: production - needs: [ pack, build-pages, mutation-tests-dashboard ] + needs: [ pack, publish-test-results, static-code-analysis, build-pages, mutation-tests-dashboard ] permissions: contents: write steps: @@ -271,7 +270,7 @@ jobs: if: ${{ startsWith(github.ref, 'refs/tags/core/v') }} runs-on: macos-latest environment: production - needs: [ pack, build-pages ] + needs: [ pack, publish-test-results, static-code-analysis, build-pages ] steps: - name: Download packages uses: actions/download-artifact@v6