Skip to content

Commit

Permalink
removed signing
Browse files Browse the repository at this point in the history
  • Loading branch information
raffaeler authored Oct 29, 2021
1 parent b8fcda7 commit d9f5b4e
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/release-to-public.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,11 @@ jobs:
run: |
dotnet pack -c Release /p:Version=${VERSION} -p:PackageVersion=${VERSION} --no-build --output .
- name: Sign
run: |
cat ${{ secrets.RAFCODESIGNB64 }} | base64 --decode > cert.pfx
dotnet nuget sign SpeedyGenerators.${VERSION}.nupkg --certificate-path cert.pfx --certificate-password ${{ secrets.RAFCODESIGNPWD }}
# this signing step does not work
# - name: Sign
# run: |
# echo ${{ secrets.RAFCODESIGNB64 }} | base64 --decode > cert.pfx
# dotnet nuget sign SpeedyGenerators.${VERSION}.nupkg --certificate-path cert.pfx --certificate-password ${{ secrets.RAFCODESIGNPWD }}

- name: Push
run: dotnet nuget push SpeedyGenerators.${VERSION}.nupkg --source https://api.nuget.org/v3/index.json --api-key ${NUGET_TOKEN}
Expand Down

0 comments on commit d9f5b4e

Please sign in to comment.