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 3a8b390 commit c773e32Copy full SHA for c773e32
.github/workflows/release.yml
@@ -1,5 +1,4 @@
1
-name: prerelease
2
-#on: [push, pull_request]
+name: release
3
on:
4
release:
5
types: [published]
@@ -16,7 +15,7 @@ jobs:
16
15
shell: bash
17
- run: echo ${{ steps.get_version.outputs.VERSION }}
18
- run: dotnet pack src/NetMQ/NetMQ.csproj -o . -c Release /p:PackageVersion=${{ steps.get_version.outputs.VERSION }} /p:Version=${{ steps.get_version.outputs.VERSION }}
19
- - run: dotnet nuget push NetMQ.${{ steps.get_version.outputs.VERSION }}.nupkg -k $NUGET_API_KEY -s https://api.nuget.org/v3/index.json
+ - run: dotnet nuget push *.nupkg -k $NUGET_API_KEY -s https://api.nuget.org/v3/index.json
20
env:
21
NUGET_API_KEY: ${{ secrets.NuGetAPIKey }}
22
0 commit comments