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 5ee8e1d commit 60006e2Copy full SHA for 60006e2
.github/workflows/create-release.yml
@@ -62,8 +62,8 @@ jobs:
62
63
- name: Create release package
64
run: |
65
- dotnet pack -c RELEASE -p:${{ github.event.inputs.versionIncrement }} -o ${GITHUB_WORKSPACE}/packages
+ dotnet pack -c RELEASE -p:PackageVersion=${{ github.event.inputs.versionIncrement }} -o ${GITHUB_WORKSPACE}/packages
66
67
- name: Upload to nuget
68
69
- echo "Upload version ${{ github.event.inputs.versionIncrement }} to nuget"
+ dotnet nuget push ${GITHUB_WORKSPACE}/packages/*.nupkg -k ${{ secrets.NUGET_API_KEY }} -s https://api.nuget.org/v3/index.json --skip-duplicate --no-symbols
0 commit comments