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.
This commit is contained in:
Steve Dower 2022-01-17 18:05:16 +00:00 committed by GitHub
parent c118c2455c
commit d6c6e6ba73
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -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'