-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
improved codesigning with a local installed cert
- Loading branch information
Showing
1 changed file
with
26 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -51,10 +51,32 @@ jobs: | |
shell: bash | ||
run: cmake --build build --config $BUILD_TYPE | ||
|
||
- name: OM Codesign (macos) | ||
- name: OM Extract Keys and Codesign (macos) | ||
if: runner.os == 'MacOS' | ||
shell: bash | ||
run: /usr/bin/codesign -v --force -o runtime --entitlements Resources/entitlements.mac.plist --sign ${{ secrets.APPLE_CODESIGN_CODE }} --timestamp osc_client/Resources/m1-orientationmanager | ||
# Extract the secrets we defined earlier as environment variables | ||
env: | ||
MACOS_CERTIFICATE: ${{ secrets.MACOS_CERTIFICATE }} | ||
MACOS_CERTIFICATE_PWD: ${{ secrets.MACOS_CERTIFICATE_PWD }} | ||
MACOS_CERTIFICATE_NAME: ${{ secrets.MACOS_CERTIFICATE_NAME }} | ||
MACOS_CI_KEYCHAIN_PWD: ${{ secrets.MACOS_CI_KEYCHAIN_PWD }} | ||
run: | | ||
# Turn our base64-encoded certificate back to a regular .p12 file | ||
echo $MACOS_CERTIFICATE | base64 --decode > certificate.p12 | ||
# We need to create a new keychain, otherwise using the certificate will prompt | ||
# with a UI dialog asking for the certificate password, which we can't | ||
# use in a headless CI environment | ||
security create-keychain -p "$MACOS_CI_KEYCHAIN_PWD" build.keychain | ||
security default-keychain -s build.keychain | ||
security unlock-keychain -p "$MACOS_CI_KEYCHAIN_PWD" build.keychain | ||
security import certificate.p12 -k build.keychain -P "$MACOS_CERTIFICATE_PWD" -T /usr/bin/codesign | ||
security set-key-partition-list -S apple-tool:,apple:,codesign: -s -k "$MACOS_CI_KEYCHAIN_PWD" build.keychain | ||
# We finally codesign our app bundle, specifying the Hardened runtime option | ||
/usr/bin/codesign -v --force -s "$MACOS_CERTIFICATE_NAME" --options runtime --entitlements Resources/entitlements.mac.plist --timestamp osc_client/Resources/m1-orientationmanager | ||
# - name: 'OM Upload Artifact (macos)' | ||
# if: runner.os == 'MacOS' | ||
|
@@ -95,7 +117,7 @@ jobs: | |
- name: OC Codesign (macos) | ||
if: runner.os == 'MacOS' | ||
shell: bash | ||
run: /usr/bin/codesign -v --force -o runtime --entitlements osc_client/Resources/M1-OrientationOSC.entitlements --sign ${{ secrets.APPLE_CODESIGN_CODE }} --timestamp osc_client/build/M1-OrientationOSC_artefacts/Release/M1-OrientationOSC.app | ||
run: /usr/bin/codesign -v --force -s "$MACOS_CERTIFICATE_NAME" --options runtime --entitlements osc_client/Resources/M1-OrientationOSC.entitlements --timestamp osc_client/build/M1-OrientationOSC_artefacts/Release/M1-OrientationOSC.app | ||
|
||
- name: OC Package (macos) | ||
uses: akiojin/[email protected] | ||
|