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 f91edf8 commit fd59191Copy full SHA for fd59191
.github/workflows/release-build.yml
@@ -58,14 +58,9 @@ jobs:
58
asset_name: Nuget.Packages.zip
59
asset_content_type: application/zip
60
61
- - uses: actions/setup-dotnet@v1
62
- with:
63
- source-url: 'https://api.nuget.org/v3/index.json'
+ - name: Publish packages to NuGet.org
64
env:
65
NUGET_AUTH_TOKEN: ${{ secrets.nugetpush_access_token }}
66
DOTNET_CLI_TELEMETRY_OPTOUT: 1
67
-
68
- - name: Publish packages to NuGet.org
69
run: |
70
- cd '.\BuildOutput\NuGet'
71
- dotnet nuget push *.nupkg -n
+ dir .\BuildOutput\NuGet\*.nupkg | %{dotnet nuget push $_ -k $env:NUGET_AUTH_TOKEN -s 'https://api.nuget.org/v3/index.json' -n }
0 commit comments