Skip to content

Commit

Permalink
fix: paths to packages
Browse files Browse the repository at this point in the history
  • Loading branch information
ppiwow-apay committed Mar 22, 2024
1 parent 841cebd commit e1489ca
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,9 +112,10 @@ 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"
dir "%cd%\unsigned"
nuget sign "%cd%\unsigned\*.nupkg" -Timestamper http://timestamp.digicert.com -outputdirectory "%cd%\signed" -CertificateFingerprint ${{ secrets.SM_CODE_SIGNING_CERT_SHA1_HASH }} -HashAlgorithm SHA256 -Verbosity detailed -Overwrite
dir %cd%\signed
nuget verify -All "%cd%\signed\*.nupkg"
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
Expand Down

0 comments on commit e1489ca

Please sign in to comment.