Skip to content

Commit

Permalink
Fixes nuget push step
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisrichards committed Mar 29, 2021
1 parent ad4c5b7 commit c345ea9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ jobs:
- name: Push to NuGet Feed
env:
NUGET_URL: https://api.nuget.org/v3/index.json
NUGET_API_KEY: ${{ secrets.MYGET_API_KEY }}
run: dotnet nuget push ./artifacts/*.nupkg --source $NUGET_FEED --skip-duplicate --api-key $NUGET_KEY
NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }}
run: dotnet nuget push ./artifacts/*.nupkg --source $NUGET_URL --skip-duplicate --api-key $NUGET_API_KEY
- name: Artifacts
uses: actions/upload-artifact@v2
with:
Expand Down

0 comments on commit c345ea9

Please sign in to comment.