Skip to content

Commit 086905d

Browse files
Update pack_publish.yml
1 parent 5b9bc97 commit 086905d

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/pack_publish.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ permissions:
1111
statuses: write
1212

1313
jobs:
14-
set-config:
14+
set_config:
1515
uses: Stillpoint-Software/shared-workflows/.github/workflows/determine_build_configuration.yml@main
1616
with:
1717
trigger: release
@@ -20,17 +20,17 @@ jobs:
2020
prerelease: ${{ github.event.release.prerelease }} # true/false from the release
2121

2222
tests:
23-
needs: set-config
24-
uses: Stillpoint-Software/shared-workflows/.github/workflows/run_test.yml@main
23+
needs: set_config
24+
uses: Stillpoint-Software/shared-workflows/.github/workflows/run_tests.yml@main
2525
with:
2626
branch: ${{ github.event.release.target_commitish }}
2727
solution_name: ${{ vars.SOLUTION_NAME }}
2828

2929
publish:
30-
needs: [set-config, tests]
30+
needs: [set_config, tests]
3131
uses: Stillpoint-Software/shared-workflows/.github/workflows/pack_and_publish.yml@main
3232
with:
33-
build_configuration: ${{ needs.set-config.outputs.build_configuration }}
33+
build_configuration: ${{ needs.set_config.outputs.build_configuration }}
3434
secrets:
3535
NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }}
3636

@@ -40,4 +40,4 @@ jobs:
4040
runs-on: ubuntu-latest
4141
steps:
4242
- run: echo "Tests result = ${{ needs.tests.result }}"
43-
- run: echo "Pack & Publish result = ${{ needs.publish.result }}"
43+
- run: echo "Pack & Publish result = ${{ needs.publish.result }}"

0 commit comments

Comments
 (0)