Skip to content

Commit

Permalink
fix: realtive paths
Browse files Browse the repository at this point in the history
  • Loading branch information
ppiwow-apay committed Mar 22, 2024
1 parent c7c3b9f commit 841cebd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 841cebd

Please sign in to comment.