Skip to content

Commit f665e65

Browse files
author
Petr Sramek
committed
check it now
1 parent 1801d17 commit f665e65

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ jobs:
121121

122122
pack:
123123
name: Pack with .NET
124-
needs: [versioning, build]
124+
needs: [build]
125125
runs-on: ubuntu-latest
126126
env:
127127
assembly-version: ${{ needs.versioning.outputs.assembly-version }}
@@ -160,7 +160,7 @@ jobs:
160160
publish-dev-package:
161161
name: 'Publish'
162162
uses: ./.github/workflows/publish-nuget-package.yml
163-
needs: [global-variables, pack]
163+
needs: [pack]
164164

165165
secrets: inherit
166166

.github/workflows/release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ jobs:
3030
3131
build:
3232
name: Build
33+
needs: [global-variables]
3334
uses: ./.github/workflows/build.yml
3435

3536
secrets: inherit
@@ -54,7 +55,7 @@ jobs:
5455
publish-package:
5556
name: 'Publish'
5657
uses: ./.github/workflows/publish-nuget-package.yml
57-
needs: [global-variables, validate]
58+
needs: [validate]
5859

5960
secrets: inherit
6061

0 commit comments

Comments
 (0)