signmacosdesktop
bunsenstraat 9 months ago
parent 09c343b85d
commit 312fe0d620
  1. 4
      .circleci/config.yml

@ -255,6 +255,7 @@ jobs:
$version = $packageJsonContent.version $version = $packageJsonContent.version
$env:PACKAGE_VERSION = "C:\Users\circleci\remix-project\release\Remix-Desktop Setup $($version).exe" $env:PACKAGE_VERSION = "C:\Users\circleci\remix-project\release\Remix-Desktop Setup $($version).exe"
Write-Host "Version $($env:PACKAGE_VERSION) stored in PACKAGE_VERSION environment variable." Write-Host "Version $($env:PACKAGE_VERSION) stored in PACKAGE_VERSION environment variable."
dir Env:
} else { } else {
Write-Host "Error: 'version' field not found in package.json." Write-Host "Error: 'version' field not found in package.json."
} }
@ -264,7 +265,8 @@ jobs:
- run: - run:
name: "Signtool-Signing" name: "Signtool-Signing"
shell: powershell.exe shell: powershell.exe
command: | command: |
dir Env:
& $env:Signtool sign /sha1 $env:SM_CODE_SIGNING_CERT_SHA1_HASH /tr http://timestamp.digicert.com /td SHA256 /fd SHA256 $env:PACKAGE_VERSION & $env:Signtool sign /sha1 $env:SM_CODE_SIGNING_CERT_SHA1_HASH /tr http://timestamp.digicert.com /td SHA256 /fd SHA256 $env:PACKAGE_VERSION
- run: - run:
name: "Signtool-Verification" name: "Signtool-Verification"

Loading…
Cancel
Save