Skip to content

Commit

Permalink
signing
Browse files Browse the repository at this point in the history
  • Loading branch information
danemadsen committed Aug 15, 2024
1 parent 4535be9 commit 73653dc
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/build-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
- name: Code Sign ${{ matrix.os == 'macos-13' && 'x86_64' || 'arm64' }} Libraries
run: |
codesign --sign "${{ secrets.APPLE_DEVELOPER_ID_APPLICATION }}" --options runtime --timestamp lib/libbabylon.dylib
codesign --deep --force --verbose --options runtime --timestamp --sign "${{ secrets.APPLE_DEVELOPER_ID_APPLICATION }}" lib/libbabylon.dylib
- name: Upload Build Artifacts
uses: actions/upload-artifact@v3
Expand Down Expand Up @@ -109,6 +109,10 @@ jobs:
xcrun notarytool store-credentials --apple-id ${{ secrets.APPLE_ID }} --password ${{ secrets.APPLE_APPLICATION_SPECIFIC_PASSWORD }} --team-id ${{ secrets.APPLE_TEAM_ID }} --validate notorization_profile
xcrun notarytool submit --keychain-profile "notorization_profile" --progress --wait babylon.zip
- name: Verify Notarization
run: |
xcrun notarytool info --keychain-profile "notorization_profile" "$(xcrun notarytool history --keychain-profile notorization_profile --latest | awk '/babylon.zip/{print $NF}')"
- name: Staple Notarization
run: |
xcrun stapler staple "universal/lib/libbabylon.dylib"
Expand Down

0 comments on commit 73653dc

Please sign in to comment.