Skip to content

Commit 4c49822

Browse files
Fix nuget sign command to include package path
1 parent eabf6b5 commit 4c49822

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/signing.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ jobs:
141141
run: |
142142
$certPath = "${{ runner.temp }}\certificate.pfx"
143143
$nupkgPath = "${{ github.workspace }}\nupkg\*.nupkg"
144-
nuget sign -CertificatePath $certPath -CertificatePassword "$env:SIGNING_CERTIFICATE_PASSWORD" -Timestamper "$env:SIGNING_CERTIFICATE_TIMESTAMP_URL"
144+
nuget sign $nupkgPath -CertificatePath $certPath -CertificatePassword "$env:SIGNING_CERTIFICATE_PASSWORD" -Timestamper "$env:SIGNING_CERTIFICATE_TIMESTAMP_URL"
145145
Write-Host "Package signing completed"
146146
147147
- name: Sign NuGet package (using dotnet nuget sign)

0 commit comments

Comments
 (0)