From b7838b6cef812a017435d8340d4ae7605b6b66ab Mon Sep 17 00:00:00 2001 From: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com> Date: Tue, 10 Mar 2026 22:47:37 -0400 Subject: [PATCH] ci(windows): disable signing for arm64 --- .github/workflows/ci-windows.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-windows.yml b/.github/workflows/ci-windows.yml index 8a210a9ba5c..2a22a84bd09 100644 --- a/.github/workflows/ci-windows.yml +++ b/.github/workflows/ci-windows.yml @@ -247,7 +247,8 @@ jobs: echo "::remove-matcher owner=gcc::" - name: Sign Windows executables - if: inputs.publish_release == 'true' && inputs.azure_signing_account != '' + # ARM64 is not currently supported, see https://github.com/Azure/artifact-signing-action/issues/92 + if: inputs.publish_release == 'true' && inputs.azure_signing_account != '' && matrix.name != 'Windows-ARM64' uses: azure/trusted-signing-action@87c2e83e6868da99d3380aa309851b32ed9a8346 # v1.1.0 with: azure-client-id: ${{ secrets.AZURE_CLIENT_ID }} @@ -282,7 +283,8 @@ jobs: mv ./cpack_artifacts/Sunshine.zip ../artifacts/Sunshine-${{ matrix.name }}-portable.zip - name: Sign Windows installers - if: inputs.publish_release == 'true' && inputs.azure_signing_account != '' + # ARM64 is not currently supported, see https://github.com/Azure/artifact-signing-action/issues/92 + if: inputs.publish_release == 'true' && inputs.azure_signing_account != '' && matrix.name != 'Windows-ARM64' uses: azure/trusted-signing-action@87c2e83e6868da99d3380aa309851b32ed9a8346 # v1.1.0 with: azure-client-id: ${{ secrets.AZURE_CLIENT_ID }}