chore: add Signing Manager health checks before certificate sign (#2943)

This commit is contained in:
Karol Sójko
2025-10-15 14:09:39 +02:00
committed by GitHub
parent add5250bd7
commit 184d4008cf
2 changed files with 5 additions and 1 deletions

View File

@@ -329,6 +329,10 @@ jobs:
smctl windows certsync
shell: cmd
- name: Health Check Signing Manager
run: smctl healthcheck
shell: cmd
- name: Build & Sign With Electron Builder
run: yarn run electron-builder --windows --x64 --ia32 --publish=never --c.extraMetadata.version=$(node -p "require('./../web/package.json').version")

View File

@@ -23,4 +23,4 @@ runs:
RELEASE_NOTES="${RELEASE_NOTES//'%'/'%25'}"
RELEASE_NOTES="${RELEASE_NOTES//$'\n'/'%0A'}"
RELEASE_NOTES="${RELEASE_NOTES//$'\r'/'%0D'}"
echo "::set-output name=result::$RELEASE_NOTES"
{ echo 'result<<EOF'; printf '%s\n' "$RELEASE_NOTES"; echo 'EOF'; } >> "$GITHUB_OUTPUT"