Skip to content

Commit

Permalink
ci(release.yml): fix missing key
Browse files Browse the repository at this point in the history
  • Loading branch information
XeroxDev committed May 11, 2022
1 parent a1f2d2c commit 3589580
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ jobs:
- name: Push
shell: bash
env:
NUGET_KEY: ${{ secrets.NUGET }}
run: nuget push ./*.nupkg -NonInteractive -src https://api.nuget.org/v3/index.json -ApiKey $NUGET_KEY
NUGET_KEY: ${{ secrets.NUGET_KEY }}
run: nuget push *.nupkg -NonInteractive -ApiKey $NUGET_KEY -src https://api.nuget.org/v3/index.json
- name: Create release
uses: softprops/action-gh-release@v1
with:
Expand Down

0 comments on commit 3589580

Please sign in to comment.