Skip to content

Commit 84eaa95

Browse files
Merge branch 'main' into develop
2 parents 574e559 + fe6fba5 commit 84eaa95

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
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 }}"

version.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$schema": "https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/main/src/NerdBank.GitVersioning/version.schema.json",
3-
"version": "1.6.1",
3+
"version": "1.6.2",
44
"publicReleaseRefSpec": [
55
"^refs/heads/main$",
66
"^refs/heads/hotfix$",

0 commit comments

Comments
 (0)