diff options
-rw-r--r-- | .azure-pipelines/windows-release/stage-pack-msix.yml | 4 |
1 files changed, 3 insertions, 1 deletions
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' |