From d6c6e6ba739ee714e5706144853008f1eed446ba Mon Sep 17 00:00:00 2001 From: Steve Dower Date: Mon, 17 Jan 2022 18:05:16 +0000 Subject: Skip signing side-loadable MSIX for Windows (GH-30644) We currently do not release these files, and so there's nothing lost by signing them. Our code signing certificate is somehow incompatible with signing MSIX files. We may be able to re-enable this when we next renew, or if Microsoft updates their signing tool to work with our certificate. --- .azure-pipelines/windows-release/stage-pack-msix.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.azure-pipelines/windows-release/stage-pack-msix.yml b/.azure-pipelines/windows-release/stage-pack-msix.yml index f967cfd..6f3e7a5 100644 --- a/.azure-pipelines/windows-release/stage-pack-msix.yml +++ b/.azure-pipelines/windows-release/stage-pack-msix.yml @@ -96,7 +96,9 @@ jobs: displayName: Sign side-loadable MSIX bundles dependsOn: - Pack_MSIX - condition: and(succeeded(), variables['SigningCertificate']) + # Our current certificate does not support MSIX signing, so we unconditionally skip this step + #condition: and(succeeded(), variables['SigningCertificate']) + condition: false pool: name: 'Windows Release' -- cgit v0.12