Refactor macOS alpha build workflow: Update artifact naming and signing

This commit is contained in:
mauro-balades
2024-09-09 00:36:14 +02:00
parent 6c335507a5
commit 00d74ae459
2 changed files with 6 additions and 6 deletions

View File

@@ -140,7 +140,9 @@ jobs:
- name: Sign to .dmg
run: |
set -ex
hdiutil convert ./dist/*.dmg -format UDZO -imagekey zlib-level=9 -o zen.macos-${{ matrix.arch }}.dmg
xattr -cr zen.macos-${{ matrix.arch }}.dmg
codesign -s "${{ secrets.macOS_AppleDeveloperId }}" zen.macos-${{ matrix.arch }}.dmg
xcrun notarytool submit "zen.macos-${{ matrix.arch }}.dmg" \
--apple-id "${{ secrets.macOS_AppleAccountId }}" \