From 9af095979666eef7b9fbd955b94d483013812ee8 Mon Sep 17 00:00:00 2001 From: RandomityGuy <31925790+RandomityGuy@users.noreply.github.com> Date: Sat, 28 Jun 2025 17:08:58 +0530 Subject: [PATCH] sign msix --- .circleci/config.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 6822daab..c01d0de2 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -466,6 +466,11 @@ jobs: fingerprints: - "82:42:56:a0:57:43:95:4e:00:c0:8c:c1:7f:70:74:47" - checkout + - run: + name: Decode Certificate + command: | + powershell -Command "[System.IO.File]::WriteAllBytes('~/key.pfx', [System.Convert]::FromBase64String('$UWP_SIGN_CERT'))" + - run: name: Install dependencies command: | @@ -575,6 +580,8 @@ jobs: echo "Error: Could not find .msix file" exit 1 fi + cd ~/project + signtool sign /fd sha256 /a /f ~/key.pfx /p $UWP_PWD MBHaxe-Ultra-UWP.msix - run: name: Upload to Artifact Storage