Skip to content

Commit bf075d8

Browse files
Update pack_publish.yml
1 parent e33430f commit bf075d8

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/pack_publish.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Pack and Publish
1+
name: Pack and Publish
22
on:
33
release:
44
types: [published]
@@ -10,7 +10,7 @@ permissions:
1010
statuses: write
1111

1212
jobs:
13-
set_config:
13+
set-config:
1414
uses: Stillpoint-Software/shared-workflows/.github/workflows/determine_build_configuration.yml@main
1515
with:
1616
trigger: release
@@ -19,17 +19,17 @@ jobs:
1919
prerelease: ${{ github.event.release.prerelease }} # true/false from the release
2020

2121
tests:
22-
needs: set_config
22+
needs: set-config
2323
uses: Stillpoint-Software/shared-workflows/.github/workflows/run_tests.yml@main
2424
with:
2525
branch: ${{ github.event.release.target_commitish }}
2626
solution_name: ${{ vars.SOLUTION_NAME }}
2727

2828
publish:
29-
needs: [set_config, tests]
29+
needs: [set-config, tests]
3030
uses: Stillpoint-Software/shared-workflows/.github/workflows/pack_and_publish.yml@main
3131
with:
32-
build_configuration: ${{ needs.set_config.outputs.build_configuration }}
32+
build_configuration: ${{ needs.set-config.outputs.build_configuration }}
3333
secrets:
3434
NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }}
3535

0 commit comments

Comments
 (0)