We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 44584a6 commit bf47743Copy full SHA for bf47743
1 file changed
.github/workflows/template.yml
@@ -71,7 +71,7 @@ jobs:
71
- name: Save & verify certificate
72
run: |
73
echo ${{ secrets.nugetCertificate }} | base64 -d > cert.p12
74
- openssl pkcs12 -in cert.p12 -nodes -passin pass:"${{ secrets.nugetCertificatePassword }}" | openssl x509 -noout -subject || "Certificate validation failed"
+ openssl pkcs12 -in cert.p12 -nodes -legacy -passin pass:"${{ secrets.nugetCertificatePassword }}" | openssl x509 -noout -subject || "Certificate validation failed"
75
- name: Sign package
76
run: dotnet nuget sign unsigned/*.nupkg --certificate-path cert.p12 --certificate-password ${{ secrets.nugetCertificatePassword }} --timestamper http://timestamp.digicert.com --output signed
77
- name: Push package
0 commit comments