From db0df07510e809f609894631dcf2f173619acf55 Mon Sep 17 00:00:00 2001 From: pizzaboxer Date: Wed, 16 Oct 2024 10:32:15 +0100 Subject: [PATCH] Temporarily disable code signing action was supposed to be ready for 2.8.0, but there were some things I forgot to sort out --- .github/workflows/ci-release.yml | 26 ++++++++++++++++---------- 1 file changed, 16 insertions(+), 10 deletions(-) diff --git a/.github/workflows/ci-release.yml b/.github/workflows/ci-release.yml index 34cc365f..39087c14 100644 --- a/.github/workflows/ci-release.yml +++ b/.github/workflows/ci-release.yml @@ -39,17 +39,23 @@ jobs: if: startsWith(github.ref, 'refs/tags/v') steps: - - name: Sign and download artifact - uses: signpath/github-action-submit-signing-request@v1 + # - 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 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: Bloxstrap (Release) (${{ github.sha }}) + path: release - name: Rename binaries run: mv release/Bloxstrap.exe Bloxstrap-${{ github.ref_name }}.exe