This commit is contained in:
Eugene
2025-10-16 01:42:51 +02:00
parent 3b282f69a1
commit c848cc6046
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -322,6 +322,8 @@ jobs:
- name: Code signing with Software Trust Manager
uses: digicert/ssm-code-signing@v1.0.0
if: github.event_name == 'push' && (startsWith(github.ref, 'refs/tags'))
env:
FORCE_DOWNLOAD_TOOLS: 'true'
- name: Installing Node
uses: actions/setup-node@v4.4.0
@@ -360,8 +362,6 @@ jobs:
if: github.event_name == 'push' && (startsWith(github.ref, 'refs/tags'))
shell: powershell
run: |
choco install jsign -y
Get-FileHash $env:SM_CLIENT_CERT_FILE -Algorithm MD5
smksp_registrar.exe list
smctl.exe healthcheck
+1 -1
View File
@@ -36,7 +36,7 @@ builder({
console.log('Signing', configuration)
if (configuration.path) {
try {
const cmd = `smctl sign --tool jsign --keypair-alias=${keypair} --input "${String(configuration.path)}"`
const cmd = `smctl sign --keypair-alias=${keypair} --input "${String(configuration.path)}"`
console.log(cmd)
const out = execSync(cmd)
if (out.toString().includes('FAILED')) {