Skip to content

Commit

Permalink
update codesign and zip
Browse files Browse the repository at this point in the history
  • Loading branch information
tmm1 committed Jun 21, 2023
1 parent 4b6a8a7 commit 16086e1
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions script/build
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,13 @@ for f in dist/chrome-capture-for-channels-macos-*; do
codesign --remove-signature $f
done

codesign -s "Developer ID Application: Fancy Bits, LLC (LVM8JB4FT5)" dist/chrome-capture-for-channels-macos-arm64
zip dist/ChromeCaptureARM64.zip dist/chrome-capture-for-channels-macos-arm64
codesign --options=runtime -s "Developer ID Application: Fancy Bits, LLC (LVM8JB4FT5)" dist/chrome-capture-for-channels-macos-arm64
rm -f dist/ChromeCaptureARM64.zip
(cd dist && zip -r ChromeCaptureARM64.zip chrome-capture-for-channels-macos-arm64)

codesign -s "Developer ID Application: Fancy Bits, LLC (LVM8JB4FT5)" dist/chrome-capture-for-channels-macos-x64
zip dist/ChromeCaptureIntel.zip dist/chrome-capture-for-channels-macos-x64
codesign --options=runtime -s "Developer ID Application: Fancy Bits, LLC (LVM8JB4FT5)" dist/chrome-capture-for-channels-macos-x64
rm -f dist/ChromeCaptureIntel.zip
(cd dist && zip -r ChromeCaptureIntel.zip chrome-capture-for-channels-macos-x64)

xcrun notarytool submit dist/ChromeCaptureARM64.zip --keychain-profile "fancybot_deployer"
xcrun notarytool submit dist/ChromeCaptureIntel.zip --keychain-profile "fancybot_deployer"

0 comments on commit 16086e1

Please sign in to comment.