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 f644022Copy full SHA for f644022
.github/workflows/release.yml
@@ -151,6 +151,12 @@ jobs:
151
env:
152
NUGET_TOKEN: ${{ secrets.NUGET_TOKEN }}
153
154
+ - name: Extract trusted signing certificate
155
+ if: success() && steps.build.outputs.sign_binaries == 'true' && steps.build.outputs.publish_nuget == 'true'
156
+ run: |
157
+ $nupkg = Get-ChildItem -Path '${{ github.workspace}}\dist' -Filter '*.nupkg' | Select-Object -First 1
158
+ nuget-cert-extractor --file $nupkg --output '${{ github.workspace}}\dist' --code-signing --author --leaf
159
+
160
- name: Archive NetOffice packages
161
if: success() && matrix.configuration == 'Release'
162
uses: actions/upload-artifact@v5
0 commit comments