fix(ci): add hash algoritm for Sectigo TS server

Otherwise signing fails with:
```
Error: SignerSign() failed." (-2146869243/0x80096005)
```
See:
https://stackoverflow.com/questions/62161135/signersign-failed-2146869243-0x80096005
https://github.com/electron-userland/electron-builder/issues/5166#issuecomment-663568037

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2024-08-29 21:10:57 +02:00
parent 99a209635b
commit fa500a3b5b
No known key found for this signature in database
GPG Key ID: FE65CD384D5BF7B4
1 changed files with 2 additions and 2 deletions

View File

@ -37,9 +37,9 @@ pipeline {
name: 'WINDOWS_CODESIGN_TIMESTAMP_URL', name: 'WINDOWS_CODESIGN_TIMESTAMP_URL',
description: 'Time Stamp Authority (TSA) server for signing binaries.', description: 'Time Stamp Authority (TSA) server for signing binaries.',
choices: [ choices: [
'http://timestamp.digicert.com',
'http://timestamp.sectigo.com',
'http://timestamp.apple.com/ts01', 'http://timestamp.apple.com/ts01',
'http://timestamp.digicert.com', /* Known to cause 0x80096005, 0x800700e1 errors. */
'http://timestamp.sectigo.com?td=sha256',
'http://time.certum.pl', 'http://time.certum.pl',
'https://freetsa.org', 'https://freetsa.org',
] ]