Skip to content

Commit

Permalink
Fix typos in paths in publish workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
rikkit committed Jun 28, 2020
1 parent 9370e15 commit 70c9d1e
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 @@ -24,8 +24,8 @@ jobs:
- name: Pack
run: dotnet pack -c Release --no-build --include-source -o ./tmp
- name: Publish
run: dotnet nuget push ./temp/Inflatable.Lastfm*.nupkg -k ${{ secrets.NUGET_API_KEY }} -s https://api.nuget.org/v3/index.json --skip-duplicate
run: dotnet nuget push ./tmp/Inflatable.Lastfm*.nupkg -k ${{ secrets.NUGET_API_KEY }} -s https://api.nuget.org/v3/index.json --skip-duplicate
- name: Upload build artifacts
uses: actions/upload-artifact@v2
with:
path: ./temp/*nupkg
path: ./tmp/*nupkg

0 comments on commit 70c9d1e

Please sign in to comment.