Skip to content

Commit f249175

Browse files
committed
Fix nuget push command
1 parent 7401aa9 commit f249175

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@ jobs:
1919
- name: Pack
2020
run: dotnet pack --configuration Release /p:Version=${VERSION} --no-build --output .
2121
- name: Push
22-
run: dotnet nuget push *.nupkg --api-key ${NUGET_KEY}
22+
run: dotnet nuget push *.nupkg --source https://api.nuget.org/v3/index.json --api-key ${NUGET_KEY}
2323
env:
2424
NUGET_KEY: ${{ secrets.NUGET_KEY }}

0 commit comments

Comments
 (0)