From 2be2f4d0d275e60eabf2f63ecbbe4e38b2aa0773 Mon Sep 17 00:00:00 2001 From: pizzaboxer Date: Tue, 29 Oct 2024 22:32:30 +0000 Subject: [PATCH] Enable code signing on production releases --- .github/workflows/ci-release.yml | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/ci-release.yml b/.github/workflows/ci-release.yml index 4038dcb..7d2c607 100644 --- a/.github/workflows/ci-release.yml +++ b/.github/workflows/ci-release.yml @@ -39,17 +39,17 @@ jobs: if: startsWith(github.ref, 'refs/tags/v') steps: - # - name: Sign and download artifact - # uses: signpath/github-action-submit-signing-request@v1 - # with: - # api-token: '${{ secrets.SIGNPATH_API_TOKEN }}' - # organization-id: '107b3de5-057b-42fc-a985-3546e4261775' - # project-slug: 'bloxstrap' - # signing-policy-slug: 'release-signing' - # artifact-configuration-slug: 'github-ci' - # github-artifact-id: '${{ needs.build.outputs.artifact-id }}' - # wait-for-completion: true - # output-artifact-directory: 'release' + - name: Sign and download artifact + uses: signpath/github-action-submit-signing-request@v1 + with: + api-token: '${{ secrets.SIGNPATH_API_TOKEN }}' + organization-id: '107b3de5-057b-42fc-a985-3546e4261775' + project-slug: 'bloxstrap' + signing-policy-slug: 'release-signing' + artifact-configuration-slug: 'github-ci' + github-artifact-id: '${{ needs.build.outputs.artifact-id }}' + wait-for-completion: true + output-artifact-directory: 'release' - name: Download x64 release artifact uses: actions/download-artifact@v4