From 841cebd66a66bc23ed0c7381213139fc344f622b Mon Sep 17 00:00:00 2001 From: Pawel Piwowarczyk Date: Fri, 22 Mar 2024 14:48:46 +0100 Subject: [PATCH] fix: realtive paths --- .github/workflows/template.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/template.yml b/.github/workflows/template.yml index 0e7ad4a..16697d0 100644 --- a/.github/workflows/template.yml +++ b/.github/workflows/template.yml @@ -112,9 +112,9 @@ jobs: # run: dotnet nuget sign unsigned/*.nupkg --certificate-path cert.p12 --certificate-password ${{ secrets.nugetCertificatePassword }} --timestamper http://timestamp.digicert.com --output signed - name: Signing using Nuget run: | - nuget sign "\unsigned\*.nupkg" -Timestamper http://timestamp.digicert.com -outputdirectory "\signed" -CertificateFingerprint ${{ secrets.SM_CODE_SIGNING_CERT_SHA1_HASH }} -HashAlgorithm SHA256 -Verbosity detailed -Overwrite - dir \signed - nuget verify -All "\signed\*.nupkg" + nuget sign ".\unsigned\*.nupkg" -Timestamper http://timestamp.digicert.com -outputdirectory ".\signed" -CertificateFingerprint ${{ secrets.SM_CODE_SIGNING_CERT_SHA1_HASH }} -HashAlgorithm SHA256 -Verbosity detailed -Overwrite + dir .\signed + nuget verify -All ".\signed\*.nupkg" - name: Setup .NET uses: actions/setup-dotnet@v3 with: