File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -155,7 +155,7 @@ jobs:
155
155
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
156
156
run : |
157
157
foreach($file in (Get-ChildItem $env:NuGetDirectory -Recurse -Include *.nupkg)) {
158
- dotnet nuget push $file --api-key $env:GITHUB_TOKEN --skip-duplicate --no-symbols
158
+ dotnet nuget push $file --api-key $env:GITHUB_TOKEN --skip-duplicate
159
159
}
160
160
if : |
161
161
success()
@@ -167,7 +167,7 @@ jobs:
167
167
NUGET_APIKEY : ${{ secrets.NUGET_APIKEY }}
168
168
run : |
169
169
foreach($file in (Get-ChildItem $env:NuGetDirectory -Recurse -Include *.nupkg)) {
170
- dotnet nuget push $file --api-key $env:NUGET_APIKEY --source https://api.nuget.org/v3/index.json --skip-duplicate --no-symbols
170
+ dotnet nuget push $file --api-key $env:NUGET_APIKEY --source https://api.nuget.org/v3/index.json --skip-duplicate
171
171
}
172
172
if : |
173
173
success()
You can’t perform that action at this time.
0 commit comments