fix: update certificate path in workflow and remove temporary key file

This commit is contained in:
Zhe Fang
2025-06-12 11:27:48 -04:00
parent b4bd479d3c
commit ea4a4ad072
2 changed files with 1 additions and 2 deletions

View File

@@ -54,7 +54,7 @@ jobs:
- name: Decode the pfx
run: |
$pfx_cert_byte = [System.Convert]::FromBase64String("${{ secrets.BASE64_ENCODED_PFX }}")
$certificatePath = "GitHubActionsWorkflow.pfx"
$certificatePath = Join-Path -Path $PWD -ChildPath "GitHubActionsWorkflow.pfx"
[IO.File]::WriteAllBytes("$certificatePath", $pfx_cert_byte)
# Create the app package by building and packaging the project