diff options
| author | John MacFarlane <[email protected]> | 2026-01-12 17:40:30 +0100 |
|---|---|---|
| committer | John MacFarlane <[email protected]> | 2026-01-12 17:40:30 +0100 |
| commit | 3c415f3e50f8080f1f5fb562f08de5f83813e690 (patch) | |
| tree | 44c9d00b6dce4e7c30055ebf57e867b770194d6c /.github/workflows | |
| parent | 8af4ede5293c853aa007c77b9aa5a0a35313931c (diff) | |
More fixes for windows code signing process.
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/release-candidate.yml | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/.github/workflows/release-candidate.yml b/.github/workflows/release-candidate.yml index 54a2abe5c..1d22fd5a7 100644 --- a/.github/workflows/release-candidate.yml +++ b/.github/workflows/release-candidate.yml @@ -70,12 +70,16 @@ jobs: copy windows\pandoc-%VERSION%-${{ matrix.versions.osarch }}-UNSIGNED.msi windows-release-candidate copy windows\pandoc-%VERSION%-${{ matrix.versions.osarch }}.zip windows-release-candidate copy windows\Makefile windows-release-candidate - - uses: actions/upload-artifact@v6 + - name: upload-unsigned-artifact + id: upload-unsigned-artifact + uses: actions/upload-artifact@v6 with: - name: windows-release-candidate - path: windows-release-candidate + name: windows-release-candidate-unsigned + path: windows-release-candidate-unsigned - - uses: signpath/github-action-submit-signing-request@v2 + - name: sign-artifact + id: sign-artifact + uses: signpath/github-action-submit-signing-request@v2 with: api-token: '${{ secrets.SIGNPATH_API_TOKEN }}' organization-id: 'd330f023-29aa-44e4-b90b-ae1c570f4a25' @@ -83,7 +87,7 @@ jobs: signing-policy-slug: 'test-signing' github-artifact-id: '${{ steps.upload-unsigned-artifact.outputs.artifact-id }}' wait-for-completion: true - output-artifact-directory: 'windows-release-candidate-signed' + output-artifact-directory: 'windows-release-candidate' macos: |
