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.
dotnet nuget
1 parent ed97855 commit c14f60bCopy full SHA for c14f60b
.github/workflows/build.yml
@@ -149,6 +149,8 @@ jobs:
149
with:
150
name: Packages
151
path: Artifacts/Packages
152
+ - name: Setup .NET SDKs
153
+ uses: actions/setup-dotnet@v5
154
- name: Publish
155
run: |
156
echo "Found the following packages to push:"
@@ -159,7 +161,7 @@ jobs:
159
161
done
160
162
for entry in Artifacts/Packages/*.nupkg
163
do
- nuget push $entry -Source 'https://api.nuget.org/v3/index.json' -ApiKey ${{secrets.NUGET_API_KEY}} -SkipDuplicate
164
+ dotnet nuget push $entry --source https://api.nuget.org/v3/index.json --api-key "${{secrets.NUGET_API_KEY}}" --skip-duplicate
165
166
- name: Check pre-release
167
id: check-pre-release
0 commit comments