File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change 5454 run : dotnet pack --no-build -c ${{ env.Configuration }} -o nupkgs /p:Version=${{ env.PackageVersion }}
5555
5656 - name : Publish to NuGet.org
57- run : dotnet nuget push "nupkgs\*.nupkg" --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json
57+ run : dotnet nuget push "nupkgs\*.nupkg" `
58+ --api-key "${{ secrets.NUGET_API_KEY }}" `
59+ --source "https://api.nuget.org/v3/index.json"
5860
5961 - name : Push to GitHub Packages
60- run : dotnet nuget push "nupkgs\*.nupkg" --api-key ${{ secrets.GITHUB_TOKEN }} --source nuget.pkg.github.com/${{ github.repository_owner }}/index.json
62+ run : dotnet nuget push "nupkgs\*.nupkg" `
63+ --api-key "${{ secrets.GITHUB_TOKEN }}" `
64+ --source "https://nuget.pkg.github.com/${{ github.repository_owner }}/index.json"
6165 env :
6266 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
You can’t perform that action at this time.
0 commit comments