Skip to content

Commit

Permalink
ops
Browse files Browse the repository at this point in the history
  • Loading branch information
imperugo committed Mar 10, 2020
1 parent b9b3190 commit 13f42fe
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/dotnetcore.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,5 +43,9 @@ jobs:
run: ./NuGetPack.bat
shell: bash
- name: Publish nuget
run: dotnet nuget push @$f --api-key ${{ secrets.NuGetApiKey}} --source https://api.nuget.org/v3/index.json
run: |
for f in ./packages/*.nupkg
do
dotnet nuget push @$f --api-key ${{ secrets.NuGetApiKey}} --source https://api.nuget.org/v3/index.json
done
shell: bash

0 comments on commit 13f42fe

Please sign in to comment.