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 cde52c1 commit b01df84Copy full SHA for b01df84
.github/workflows/release.yml
@@ -143,6 +143,12 @@ jobs:
143
--timestamp-url http://timestamp.acs.microsoft.com `
144
--timestamp-digest SHA256
145
146
+ - name: Extract trusted signing certificate
147
+ if: success() && steps.build.outputs.sign_binaries == 'true'
148
+ run: |
149
+ $nupkg = Get-ChildItem -Path '${{ github.workspace}}\dist' -Filter '*.nupkg' | Select-Object -First 1
150
+ nuget-cert-extractor --file $nupkg --output '${{ github.workspace}}\dist' --code-signing --author --leaf
151
+
152
- name: Publish packages
153
if: success() && steps.build.outputs.publish_nuget == 'true'
154
working-directory: '${{ github.workspace}}\dist'
0 commit comments