We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9916ff6 commit ee9a77cCopy full SHA for ee9a77c
.github/workflows/build.yml
@@ -34,7 +34,10 @@ jobs:
34
id: gitversion
35
36
- name: Format NuGet version
37
- run: echo "##[set-output name=nugetVersion;]${{ steps.gitversion.outputs.NuGetVersion | replace('-', '.') }}"
+ run: |
38
+ nugetVersion="${{ steps.gitversion.outputs.NuGetVersion }}"
39
+ nugetVersion="${nugetVersion//-/.}"
40
+ echo "##[set-output name=nugetVersion;]$nugetVersion"
41
id: formatversion
42
43
- name: Display GitVersion outputs
0 commit comments