Skip to content

Commit d6c6e6b

Browse files
authored
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.
1 parent c118c24 commit d6c6e6b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.azure-pipelines/windows-release/stage-pack-msix.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,9 @@ jobs:
9696
displayName: Sign side-loadable MSIX bundles
9797
dependsOn:
9898
- Pack_MSIX
99-
condition: and(succeeded(), variables['SigningCertificate'])
99+
# Our current certificate does not support MSIX signing, so we unconditionally skip this step
100+
#condition: and(succeeded(), variables['SigningCertificate'])
101+
condition: false
100102

101103
pool:
102104
name: 'Windows Release'

0 commit comments

Comments
 (0)