mirror of https://github.com/python/cpython
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:
parent
c118c2455c
commit
d6c6e6ba73
|
@ -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'
|
||||
|
|
Loading…
Reference in New Issue