Skip to content

Commit

Permalink
fix: dependency/needs declarations
Browse files Browse the repository at this point in the history
  • Loading branch information
mikechu-optimizely committed Nov 7, 2024
1 parent 3740f26 commit bd1c96e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/csharp_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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 }}
Expand Down Expand Up @@ -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.
Expand Down

0 comments on commit bd1c96e

Please sign in to comment.