From 8b14a4775ba709e3369976458fe984d52849fdd5 Mon Sep 17 00:00:00 2001 From: WerWolv Date: Sun, 21 Dec 2025 16:04:44 +0100 Subject: [PATCH] build: Disable ARM msi signing because it doesn't work (cherry picked from commit 76cf8771158012095d3b3ed58cc93c27ccfac7df) --- .github/workflows/release.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f9dac0c95..34898a5b9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -144,6 +144,7 @@ jobs: imhex-*-x86_64.msi - name: ⬆️ Upload Unsigned ARM64 Windows Installer + if: false uses: actions/upload-artifact@v4 id: upload-installer-arm64 with: @@ -154,7 +155,7 @@ jobs: - name: 🗑️ Delete unsigned installers run: | - rm imhex-*.msi + rm imhex-*-x86_64.msi - name: 🗝️ Sign x86_64 Installer uses: signpath/github-action-submit-signing-request@v1 @@ -168,6 +169,7 @@ jobs: output-artifact-directory: '.' - name: 🗝️ Sign ARM64 Installer + if: false uses: signpath/github-action-submit-signing-request@v1 with: api-token: '${{ secrets.SIGNPATH_API_TOKEN }}'