Skip to content

Commit

Permalink
fixed duplicate errors on nuget.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
TheBottleCyber committed Feb 21, 2022
1 parent f93c90d commit 129d28e
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/nuget.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,4 @@ jobs:
run: dotnet pack --no-build --include-symbols -p:SymbolPackageFormat=snupkg -o .

- name: Publish nupkg
run: nuget push **\*.nupkg -SkipDuplicate -Source 'https://api.nuget.org/v3/index.json' -ApiKey ${{secrets.NUGET_API_KEY}}

- name: Publish snupkg
run: nuget push **\*.snupkg -SkipDuplicate -Source 'https://api.nuget.org/v3/index.json' -ApiKey ${{secrets.NUGET_API_KEY}}
run: nuget push *.nupkg -Source 'https://api.nuget.org/v3/index.json' -ApiKey ${{secrets.NUGET_API_KEY}}

0 comments on commit 129d28e

Please sign in to comment.