install mac signing cert #6
Workflow file for this run
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
name: Build | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- 'chore/ci-cd' | |
env: | |
DEVELOPER_DIR: /Applications/Xcode_15.0.app/Contents/Developer | |
jobs: | |
build: | |
name: Build and Publish Release | |
runs-on: macOS-13 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Install certificates | |
env: | |
DEV_SIGN_CERT: ${{ secrets.DEV_SIGN_CERT }} | |
DEV_SIGN_PW: ${{ secrets.DEV_SIGN_PW }} | |
MAC_SIGN_CERT: ${{ secrets.MAC_SIGN_CERT }} | |
MAC_SIGN_PW: ${{ secrets.MAC_SIGN_PW }} | |
KEYCHAIN_TIMEOUT: 21600 | |
run: | | |
DEV_CERT_P12="$RUNNER_TEMP/dev_cert.p12" | |
MAC_CERT_P12="$RUNNER_TEMP/mac_cert.p12" | |
KEYCHAIN_DB="$RUNNER_TEMP/keychain.keychain-db" | |
KEYCHAIN_PW=$(openssl rand -base64 24) | |
security create-keychain -p "$KEYCHAIN_PW" "$KEYCHAIN_DB" | |
security set-keychain-settings -lut "$KEYCHAIN_TIMEOUT" "$KEYCHAIN_DB" | |
security unlock-keychain -p "$KEYCHAIN_PW" "$KEYCHAIN_DB" | |
echo -n "$DEV_SIGN_CERT" | base64 --decode -o "$DEV_CERT_P12" | |
security import "$DEV_CERT_P12" -P "$DEV_SIGN_PW" -A -t cert -f pkcs12 -k "$KEYCHAIN_DB" | |
echo -n "$MAC_SIGN_CERT" | base64 --decode -o "$MAC_CERT_P12" | |
security import "$MAC_CERT_P12" -P "$MAC_SIGN_PW" -A -t cert -f pkcs12 -k "$KEYCHAIN_DB" | |
security list-keychain -d user -s "$KEYCHAIN_DB" | |
- name: Build | |
env: | |
APPLE_TEAM_ID: ${{ secrets.APPLE_TEAM_ID }} | |
run: | | |
set -o pipefail && xcodebuild archive -project "TimeMachineStatus.xcodeproj" \ | |
-scheme "TimeMachineStatus" \ | |
-configuration "Release" \ | |
-derivedDataPath "$RUNNER_TEMP/DerivedData" \ | |
-archivePath "$RUNNER_TEMP/TimeMachineStatus.xcarchive" \ | |
DEVELOPMENT_TEAM=$APPLE_TEAM_ID | |
- name: Sign | |
env: | |
CODE_SIGN_IDENTITY: ${{ secrets.CODE_SIGN_IDENTITY }} | |
run: | | |
codesign \ | |
--sign "$CODE_SIGN_IDENTITY" \ | |
-vvv --verbose --strict \ | |
--options=runtime \ | |
--prefix com.lukaspistrol.TimeMachineStatus \ | |
--force --deep --timestamp \ | |
"$RUNNER_TEMP/TimeMachineStatus.xcarchive/Products/Applications/TimeMachineStatus.app" | |
- name: Create DMG | |
env: | |
APPLE_TEAM_ID: ${{ secrets.APPLE_TEAM_ID }} | |
APPLE_ID: ${{ secrets.APPLE_ID }} | |
APPLE_ID_PASSWORD: ${{ secrets.APPLE_ID_PASSWORD }} | |
run: | | |
brew install create-dmg | |
xcrun notarytool store-credentials TimeMachineStatus \ | |
--apple-id "$APPLE_ID" \ | |
--team-id "$APPLE_TEAM_ID" \ | |
--password "$APPLE_ID_PASSWORD" | |
create-dmg \ | |
--volname "TimeMachineStatus" \ | |
--volicon "$RUNNER_TEMP/TimeMachineStatus.xcarchive/Products/Applications/TimeMachineStatus.app/Contents/Resources/AppIcon.icns" \ | |
--window-pos 200 120 \ | |
--window-size 800 400 \ | |
--icon-size 100 \ | |
--icon "TimeMachineStatus.app" 200 190 \ | |
--hide-extension "TimeMachineStatus.app" \ | |
--app-drop-link 600 185 \ | |
--notarize "TimeMachineStatus" \ | |
--skip-jenkins \ | |
"$RUNNER_TEMP/TimeMachineStatus.dmg" \ | |
"$RUNNER_TEMP/TimeMachineStatus.xcarchive/Products/Applications/TimeMachineStatus.app" | |
- name: Clean up keychain and provisioning profile | |
if: ${{ always() }} | |
run: | | |
security delete-keychain "$RUNNER_TEMP/keychain.keychain-db" | |
rm -rf "~/Library/MobileDevice/Provisioning Profiles" |