From 606a83c4c5a45a505c173f93a3319135572b0dcc Mon Sep 17 00:00:00 2001 From: Baptiste Augrain Date: Tue, 29 Oct 2024 19:13:00 +0100 Subject: [PATCH] ci(windows): add flag to disable signing [skip ci] --- .github/workflows/insider-windows.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/insider-windows.yml b/.github/workflows/insider-windows.yml index 8d4e824..f32b842 100644 --- a/.github/workflows/insider-windows.yml +++ b/.github/workflows/insider-windows.yml @@ -108,7 +108,7 @@ jobs: assets/*.exe assets/*.msi retention-days: 1 - if: env.SHOULD_BUILD == 'yes' && (env.SHOULD_DEPLOY == 'yes' || github.event.inputs.generate_assets == 'true') + if: env.SHOULD_BUILD == 'yes' && vars.DISABLE_INSIDER_WINDOWS_SIGNING != 'yes' && (env.SHOULD_DEPLOY == 'yes' || github.event.inputs.generate_assets == 'true') - name: Signing uses: signpath/github-action-submit-signing-request@v1 @@ -123,7 +123,7 @@ jobs: # 3h to manually approve the request wait-for-completion-timeout-in-seconds: 10800 output-artifact-directory: assets/ - if: env.SHOULD_BUILD == 'yes' && (env.SHOULD_DEPLOY == 'yes' || github.event.inputs.generate_assets == 'true') + if: env.SHOULD_BUILD == 'yes' && vars.DISABLE_INSIDER_WINDOWS_SIGNING != 'yes' && (env.SHOULD_DEPLOY == 'yes' || github.event.inputs.generate_assets == 'true') - name: Prepare checksums run: ./prepare_checksums.sh