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 a753129 commit b8fcda7
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,11 @@ jobs:
- name: Pack
run: dotnet pack -c Release /p:Version=${VERSION} -p:PackageVersion=${VERSION} --no-build --output .

- name: Sign
run: |
echo ${{ 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://nuget.pkg.github.com/raffaeler/index.json --api-key ${GITHUB_TOKEN}
Expand Down

0 comments on commit b8fcda7

Please sign in to comment.