chore(ci): add debug logs for windows signing

https://learn.microsoft.com/en-us/windows/msix/package/signing-known-issues

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

View File

@ -40,10 +40,10 @@ for FILE in ${FOUND_FILES}; do
done done
# Sign all the non-signed binaries. Add -debug if need be. # Sign all the non-signed binaries. Add -debug if need be.
"${SIGNTOOL}" sign -v -fd SHA256 \ "${SIGNTOOL}" sign -v -debug -fd SHA256 \
-p "${WINDOWS_CODESIGN_PASSWORD}" \ -p "${WINDOWS_CODESIGN_PASSWORD}" \
-f "${WINDOWS_CODESIGN_PFX_PATH}" \ -f "${WINDOWS_CODESIGN_PFX_PATH}" \
-tr "${WINDOWS_CODESIGN_TIMESTAMP_URL}" \ -tr "${WINDOWS_CODESIGN_TIMESTAMP_URL}" \
"${FILES_TO_SIGN[@]}" | dos2unix "${FILES_TO_SIGN[@]}"
echo "Signed successfully!" echo "Signed successfully!"