fix(ci): notarize dmg in workflow (#87)

* chore: release v1.1.9

* fix(ci): notarize dmg in workflow
This commit is contained in:
Nexmoe
2026-01-12 22:29:14 +08:00
committed by GitHub
parent 66f2211d68
commit 20c6ae6543
2 changed files with 5 additions and 1 deletions

View File

@@ -206,6 +206,10 @@ jobs:
dmgs_found=0
while IFS= read -r dmg; do
dmgs_found=1
echo "Submitting DMG for notarization: $dmg"
xcrun notarytool submit "$dmg" --key "$APPLE_API_KEY" --key-id "$APPLE_API_KEY_ID" --issuer "$APPLE_API_ISSUER" --wait
echo "Stapling notarization ticket for $dmg"
xcrun stapler staple "$dmg"
echo "Validating notarization ticket for $dmg"
xcrun stapler validate "$dmg"
done < <(find dist -type f -name "*.dmg" -print)

View File

@@ -1,6 +1,6 @@
{
"name": "vidbee",
"version": "1.1.8",
"version": "1.1.9",
"description": "A modern Electron application for downloading videos and audios",
"main": "./out/main/index.js",
"author": "VidBee",