Skip to content

Commit 176b9c4

Browse files
author
Petr Sramek
committed
kgjh
1 parent 2697404 commit 176b9c4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/dotnet.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
outputs:
1616
version: ${{ steps.gitversion.outputs.majorMinorPatch }}
17-
versionSuffix: ${{ steps.gitversion.outputs.PreReleaseTag }}
17+
versionSuffix: ${{ steps.gitversion.outputs.preReleaseTag }}
1818
steps:
1919
- uses: actions/checkout@v3
2020
with:
@@ -30,8 +30,6 @@ jobs:
3030
with:
3131
useConfigFile: true
3232
configFilePath: ./.gitversion/version.yml
33-
- run: 'echo FullSemVer: ${{ env.fullSemVer }}'
34-
- run: 'echo FullSemVer: ${{ env.majorMinorPatch }}'
3533

3634
build:
3735
name: Build with .NET ${{ vars.DOTNET_VERSION }}
@@ -42,6 +40,8 @@ jobs:
4240
versionSuffix: ${{ needs.version.outputs.versionSuffix }}
4341
steps:
4442
- uses: actions/checkout@v3
43+
- run: 'echo version: ${{ env.version }}'
44+
- run: 'echo versionSuffix: ${{ env.versionSuffix }}'
4545
- name: Install .NET ${{ vars.DOTNET_VERSION }}
4646
uses: actions/setup-dotnet@v4
4747
with:

0 commit comments

Comments
 (0)