Skip to content

Commit

Permalink
try suggestion from NuGet/Home#8580
Browse files Browse the repository at this point in the history
  • Loading branch information
365Erez committed Mar 25, 2021
1 parent ac5f229 commit 990ef94
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/publish_nuget.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,12 @@ jobs:

- name: Debug
working-directory: ./Nugets
run: echo dotnet nuget push "*.nupkg" -k $REPO_TOKEN -s https://nuget.pkg.github.com/ErezG/index.json
run: echo dotnet nuget push "*.nupkg" -k ${GITHUB_TOKEN} -s https://nuget.pkg.github.com/ErezG/index.json
env:
REPO_TOKEN: ${{ secrets.PUSH_PACKAGES_PAT }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Push package
working-directory: ./Nugets
run: dotnet nuget push "*.nupkg" -k $REPO_TOKEN -s https://nuget.pkg.github.com/ErezG/index.json
run: dotnet nuget push "*.nupkg" -k ${GITHUB_TOKEN} -s https://nuget.pkg.github.com/ErezG/index.json
env:
REPO_TOKEN: ${{ secrets.PUSH_PACKAGES_PAT }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 990ef94

Please sign in to comment.