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 b62d5e3 commit 3feec73Copy full SHA for 3feec73
.github/workflows/build-test-deploy.yml
@@ -68,10 +68,11 @@ jobs:
68
- name: Push NuGet
69
run: |
70
$tagVersion = "${{ github.ref }}".substring(11)
71
+ echo "buildVersion=$tagVersion.${{ github.run_number }}" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
72
dotnet nuget push IntelliTect.TestTools.Console.$tagVersion.nupkg --source https://api.nuget.org/v3/index.json -k ${{ secrets.NUGET_API_KEY }} --skip-duplicate
73
- name: Upload nupkg to Releases
74
uses: softprops/action-gh-release@v1
75
with:
76
fail_on_unmatched_files: true
77
generate_release_notes: true
- files: IntelliTect.TestTools.Console.$tagVersion.nupkg
78
+ files: IntelliTect.TestTools.Console.$env:buildVersion.nupkg
0 commit comments