Skip to content

Commit

Permalink
Updated glob pattern for nuget push
Browse files Browse the repository at this point in the history
  • Loading branch information
tidyui committed Jun 3, 2020
1 parent 0ed7e40 commit 9f75eed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish_to_nuget.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@ jobs:
run: ./SignClient "SIGN" --input "artifacts/*.nupkg" --config "sign.json" --user "${{secrets.SignClientUser}}" --secret "${{secrets.SignClientSecret}}" --name "Piranha" --description "Piranha" --descriptionUrl "https://github.com/piranhacms/piranha.core"

# Sign symbol packages
- name: Sign packages
- name: Sign symbol packages
run: ./SignClient "SIGN" --input "artifacts/*.snupkg" --config "sign.json" --user "${{secrets.SignClientUser}}" --secret "${{secrets.SignClientSecret}}" --name "Piranha" --description "Piranha" --descriptionUrl "https://github.com/piranhacms/piranha.core"

# Push to NuGet
- name: Push generated package to GitHub registry
run: dotnet nuget push '**/*.nupkg' --skip-duplicate -k ${{ secrets.NugetAuthToken }}
run: dotnet nuget push '**/Piranha*.nupkg' --skip-duplicate -k ${{ secrets.NugetAuthToken }}

0 comments on commit 9f75eed

Please sign in to comment.