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 ee837e8 commit 8c88eefCopy full SHA for 8c88eef
.github/workflows/nuget_publish.yaml
@@ -16,7 +16,7 @@ env:
16
DOTNET_NOLOGO: true
17
NuGetDirectory: ${{github.workspace}}/nuget
18
DOTNET_TARGET_VERSION: 8.0.x
19
- VERSION_SUFFIX: ${{ github.run_number }}
+ BUILD_NUMBER: ${{ github.run_number }}
20
21
defaults:
22
run:
@@ -38,7 +38,7 @@ jobs:
38
39
40
# Create the NuGet package in the folder from the environment variable NuGetDirectory
41
- - run: dotnet pack --version-suffix ".${{ env.VERSION_SUFFIX }}" --configuration Release --output ${{ env.NuGetDirectory }}
+ - run: dotnet pack --version-suffix ".${{ env.BUILD_NUMBER }}" --configuration Release --output ${{ env.NuGetDirectory }}
42
43
# Publish the NuGet package as an artifact, so they can be used in the following jobs
44
- uses: actions/upload-artifact@v3
0 commit comments