From bd1c96ed939e4cdb4dc8bae29fc0732a5db9650c Mon Sep 17 00:00:00 2001 From: Mike Chu Date: Thu, 7 Nov 2024 15:36:28 -0500 Subject: [PATCH] fix: dependency/`needs` declarations --- .github/workflows/csharp_release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/csharp_release.yml b/.github/workflows/csharp_release.yml index cfe052df..ceb7b1af 100644 --- a/.github/workflows/csharp_release.yml +++ b/.github/workflows/csharp_release.yml @@ -132,7 +132,7 @@ jobs: sign: name: Send DLLs for signing - needs: [ variables, buildFrameworkVersions, buildStandard16, buildStandard20 ] + needs: [ combineArtifacts ] runs-on: ubuntu-latest env: # TODO: Replace actual values @@ -180,7 +180,7 @@ jobs: pack: name: Pack NuGet package - needs: [ variables, sign ] + needs: [ sign ] runs-on: ubuntu-latest env: VERSION: ${{ needs.variables.outputs.semanticVersion }} @@ -233,7 +233,7 @@ jobs: publish: name: Publish package to NuGet after reviewing the artifact - needs: [ variables, pack ] + needs: [ pack ] runs-on: ubuntu-latest # Review the `nuget-package` artifact ensuring the dlls are # organized and signed before approving.