From d9f5b4efc0b37e837a619520c2700a2296a7de84 Mon Sep 17 00:00:00 2001 From: "Raf (Raffaele Rialdi)" Date: Fri, 29 Oct 2021 10:38:42 +0200 Subject: [PATCH] removed signing --- .github/workflows/release-to-public.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release-to-public.yml b/.github/workflows/release-to-public.yml index 9c6390e..b16e88e 100644 --- a/.github/workflows/release-to-public.yml +++ b/.github/workflows/release-to-public.yml @@ -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}