File tree Expand file tree Collapse file tree 1 file changed +10
-1
lines changed
Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change 4545 run : |
4646 choco install windows-sdk-10-version-2004-all -y
4747
48+ - name : Sign EXE
49+ shell : powershell
50+ run : |
51+ $signtool = "${env:ProgramFiles(x86)}\Windows Kits\10\bin\10.0.19041.0\x64\signtool.exe"
52+ if (!(Test-Path $signtool)) {
53+ $signtool = "${env:ProgramFiles(x86)}\Windows Kits\10\bin\x64\signtool.exe"
54+ }
55+ & "$signtool" sign /f kingtriton.pfx /p "${{ secrets.PFX_PASSWORD }}" /tr http://timestamp.digicert.com /td sha256 /fd sha256 "dist\PythonProjectMngr.exe"
56+
4857 - name : Upload artifact
4958 uses : actions/upload-artifact@v4
5059 with :
5564 uses : crazy-max/ghaction-virustotal@v4.0.0
5665 with :
5766 vt_api_key : ${{ secrets.VIRUSTOTAL_API_KEY }}
58- files : dist/PythonProjectMngr.exe
67+ files : dist/PythonProjectMngr.exe
You can’t perform that action at this time.
0 commit comments