We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f665e65 commit 0c84a80Copy full SHA for 0c84a80
.github/workflows/build.yml
@@ -121,7 +121,7 @@ jobs:
121
122
pack:
123
name: Pack with .NET
124
- needs: [build]
+ needs: [versioning, build]
125
runs-on: ubuntu-latest
126
env:
127
assembly-version: ${{ needs.versioning.outputs.assembly-version }}
@@ -160,7 +160,7 @@ jobs:
160
publish-dev-package:
161
name: 'Publish'
162
uses: ./.github/workflows/publish-nuget-package.yml
163
- needs: [pack]
+ needs: [global-variables, pack]
164
165
secrets: inherit
166
.github/workflows/release.yml
@@ -55,7 +55,7 @@ jobs:
55
publish-package:
56
57
58
- needs: [validate]
+ needs: [global-variables, validate, build]
59
60
61
0 commit comments