Skip to content

Commit

Permalink
fix(build): Fix nuget push file pattern
Browse files Browse the repository at this point in the history
  • Loading branch information
VMelnalksnis committed Jun 14, 2022
1 parent 36f824e commit 2a905a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,5 +65,5 @@ jobs:
${{ steps.download.outputs.download-path }}/**/*.nupkg
- name: NuGet Push
run: dotnet nuget push "*.nupkg" --api-key ${{ secrets.NUGET_KEY }} --source https://api.nuget.org/v3/index.json
run: dotnet nuget push "**/*.nupkg" --api-key ${{ secrets.NUGET_KEY }} --source https://api.nuget.org/v3/index.json
working-directory: ${{ steps.download.outputs.download-path }}

0 comments on commit 2a905a4

Please sign in to comment.