Skip to content

Commit 11b441d

Browse files
authored
Merge pull request #110 from TroyCornwall/feature/fix-nuget
attempt to fix nuget push
2 parents bc27ad2 + b17e60e commit 11b441d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/dotnet-core.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ jobs:
2828
- name: Package Bard
2929
run: dotnet pack -c Release -o . src/Bard/Bard.csproj
3030
- name: Publish Bard
31-
run: dotnet nuget push *.nupkg -k ${{ secrets.NUGET_KEY }} -s https://api.nuget.org/v3/index.json --skip-duplicate
31+
run: dotnet nuget push *.nupkg -s https://api.nuget.org/v3/index.json --skip-duplicate -k ${{ secrets.NUGET_KEY }}
3232
- name: Package Bard.gRpc
3333
run: dotnet pack -c Release -o . src/Bard.gRPC/Bard.gRPC.csproj
3434
- name: Publish Bard.gRpc
35-
run: dotnet nuget push *.nupkg -k ${{ secrets.NUGET_KEY }} -s https://api.nuget.org/v3/index.json --skip-duplicate
35+
run: dotnet nuget push *.nupkg -s https://api.nuget.org/v3/index.json --skip-duplicate -k ${{ secrets.NUGET_KEY }}
3636

0 commit comments

Comments
 (0)