We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5aaf7f1 commit 6c16cf4Copy full SHA for 6c16cf4
.github/workflows/build_and_scan.yml
@@ -34,9 +34,11 @@ jobs:
34
PYTHONIOENCODING: utf-8
35
36
- name: Restore code signing certificate
37
- run: |
38
- echo "${{ secrets.PFX_BASE64 }}" | certutil -decode - kingtriton.pfx
39
shell: powershell
+ run: |
+ $pfxBase64 = "${{ secrets.PFX_BASE64 }}"
40
+ $pfxBytes = [System.Convert]::FromBase64String($pfxBase64)
41
+ [IO.File]::WriteAllBytes("kingtriton.pfx", $pfxBytes)
42
43
- name: Sign EXE
44
run: |
0 commit comments