Skip to content

Commit

Permalink
ci: fix push to NuGet
Browse files Browse the repository at this point in the history
  • Loading branch information
phnx47 committed Feb 26, 2023
1 parent 5eaf67b commit 42aee53
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Expand Up @@ -66,6 +66,6 @@ jobs:
- name: 📥 Download artifacts
uses: actions/download-artifact@v3
with:
name: nupkg
name: nupkgs
- name: 📦 Push to NuGet
run: dotnet nuget push "*.nupkg" -k ${{ secrets.NUGET_KEY }} -s https://api.nuget.org/v3/index.json
run: dotnet nuget push "**/*.nupkg" -k ${{ secrets.NUGET_KEY }} -s https://api.nuget.org/v3/index.json

0 comments on commit 42aee53

Please sign in to comment.