File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -37,23 +37,23 @@ jobs:
3737
3838 - name : Push NuGet Package(s) to nuget.org
3939 run : |
40- dotnet nuget push "${{ github.workspace }}/nuget-packages/*.nupkg" `
41- --source https://api.nuget.org/v3/index.json `
42- --api-key ${{ secrets.NUGET_API_KEY }} `
40+ dotnet nuget push "${{ github.workspace }}/nuget-packages/*.nupkg" \
41+ --source https://api.nuget.org/v3/index.json \
42+ --api-key ${{ secrets.NUGET_API_KEY }} \
4343 --skip-duplicate
4444
4545 - name : Add GitHub Packages source
4646 run : |
47- dotnet nuget add source `
48- --username ${{ github.actor }} `
49- --password ${{ secrets.GITHUB_TOKEN }} `
50- --store-password-in-clear-text `
51- --name github `
47+ dotnet nuget add source \
48+ --username ${{ github.actor }} \
49+ --password ${{ secrets.GITHUB_TOKEN }} \
50+ --store-password-in-clear-text \
51+ --name github \
5252 "https://nuget.pkg.github.com/${{ env.OWNER }}/index.json"
5353
5454 - name : Push NuGet Package(s) to GitHub
5555 run : |
56- dotnet nuget push "${{ github.workspace }}/nuget-packages/*.nupkg" `
57- --source github `
58- --api-key ${{ secrets.GITHUB_TOKEN }} `
56+ dotnet nuget push "${{ github.workspace }}/nuget-packages/*.nupkg" \
57+ --source github \
58+ --api-key ${{ secrets.GITHUB_TOKEN }} \
5959 --skip-duplicate
You can’t perform that action at this time.
0 commit comments