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 5026359 commit 991b63eCopy full SHA for 991b63e
.github/workflows/release.yml
@@ -48,8 +48,4 @@ jobs:
48
}
49
dotnet pack -v normal -c Release --include-symbols --include-source -p:PackageVersion=$VERSION -o nupkg src/${{ env.PROJECT_NAME }}/${{ env.PROJECT_NAME }}.csproj
50
- name: Push to Nuget
51
- run: |
52
- gci ./nupkg/*.nupkg |
53
- sort LastWriteTime -Descending |
54
- select -First 1 |
55
- % { dotnet nuget push $_.FullName --source https://api.nuget.org/v3/index.json --api-key ${{secrets.NUGET_KEY}} --skip-duplicate }
+ run: dotnet nuget push ./nupkg/${{ env.PROJECT_NAME }}.${{ $VERSION }}.nupkg --source https://api.nuget.org/v3/index.json --api-key ${{secrets.NUGET_KEY}} --skip-duplicate }
0 commit comments