-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Tim Nunamaker
committed
Mar 12, 2024
1 parent
7c81561
commit 267b596
Showing
2 changed files
with
146 additions
and
1 deletion.
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 |
---|---|---|
|
@@ -12,16 +12,51 @@ on: | |
jobs: | ||
build: | ||
name: Build on ${{ matrix.os }} | ||
runs-on: ${{ matrix.os }} | ||
# runs-on: ${{ matrix.os }} | ||
runs-on: tim_mbp | ||
strategy: | ||
matrix: | ||
# os: [ubuntu-latest, macos-latest-xlarge, windows-latest] | ||
os: [macos-latest-xlarge] | ||
python-version: [3.11] | ||
node-version: [20] | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Install the Apple certificate and provisioning profile | ||
if: runner.os == 'macOS' | ||
env: | ||
APPLE_BUILD_CERTIFICATE_BASE64: ${{ secrets.APPLE_BUILD_CERTIFICATE_BASE64 }} | ||
APPLE_BUILD_CERTIFICATE_PASSWORD: ${{ secrets.APPLE_BUILD_CERTIFICATE_PASSWORD }} | ||
APPLE_PROVISIONING_PROFILE_BASE64: ${{ secrets.APPLE_PROVISIONING_PROFILE_BASE64 }} | ||
APPLE_MACOS_KEYCHAIN_PASSWORD: ${{ secrets.APPLE_MACOS_KEYCHAIN_PASSWORD }} | ||
run: | | ||
# create variables | ||
CERTIFICATE_PATH=$RUNNER_TEMP/apple_certificate.p12 | ||
PROVISIONING_PROFILE_PATH=$RUNNER_TEMP/apple_provisioning_profile.provisionprofile | ||
KEYCHAIN_PATH=$RUNNER_TEMP/github-actions.keychain-db | ||
KEYCHAIN_NAME=github-actions | ||
# import certificate and provisioning profile from secrets | ||
echo -n "$APPLE_BUILD_CERTIFICATE_BASE64" | base64 --decode > $CERTIFICATE_PATH | ||
echo -n "$APPLE_PROVISIONING_PROFILE_BASE64" | base64 --decode > $PROVISIONING_PROFILE_PATH | ||
# create temporary keychain | ||
security create-keychain -p "$APPLE_MACOS_KEYCHAIN_PASSWORD" $KEYCHAIN_PATH | ||
security set-keychain-settings -lut 21600 $KEYCHAIN_PATH | ||
security unlock-keychain -p "$APPLE_MACOS_KEYCHAIN_PASSWORD" $KEYCHAIN_PATH | ||
security default-keychain -s $KEYCHAIN_PATH | ||
# import certificate to keychain | ||
security import $CERTIFICATE_PATH -P "$APPLE_BUILD_CERTIFICATE_PASSWORD" -A -t cert -f pkcs12 -k $KEYCHAIN_PATH | ||
security set-key-partition-list -S apple-tool:,apple: -k "$APPLE_MACOS_KEYCHAIN_PASSWORD" $KEYCHAIN_PATH | ||
security list-keychain -d user -s $KEYCHAIN_PATH | ||
# apply provisioning profile | ||
mkdir -p ~/Library/MobileDevice/Provisioning\ Profiles | ||
cp $PROVISIONING_PROFILE_PATH ~/Library/MobileDevice/Provisioning\ Profiles | ||
- name: Install Poetry | ||
run: | | ||
curl -sSL https://install.python-poetry.org | python3 - | ||
|
@@ -66,9 +101,73 @@ jobs: | |
- name: Set executable permissions | ||
run: chmod +x dist/selfie/selfie | ||
|
||
- name: Package App | ||
if: runner.os == 'macOS' | ||
run: sh scripts/package-macos-app.sh | ||
|
||
- name: Sign the App | ||
if: runner.os == 'macOS' | ||
run: | | ||
codesign --deep --force --verbose --options runtime --sign "Developer ID Application: Corsali, Inc (G7QNBSSW44)" "${{ github.workspace }}/dist/selfie/Selfie.app" | ||
- name: Create ZIP Archive for Notarization | ||
if: runner.os == 'macOS' | ||
run: | | ||
ditto -c -k --keepParent dist/selfie selfie.zip | ||
- name: Submit for Notarization | ||
if: runner.os == 'macOS' | ||
id: notarization_submit | ||
run: | | ||
echo "Submitting app for notarization..." | ||
NOTARIZATION_OUTPUT=$(xcrun altool --notarize-app --primary-bundle-id "com.vana.selfie" --username "[email protected]" --password "@keychain:APP_SPECIFIC_PASSWORD" --file selfie.zip --output-format xml) | ||
echo "${NOTARIZATION_OUTPUT}" | ||
REQUEST_UUID=$(echo "${NOTARIZATION_OUTPUT}" | grep -oE 'RequestUUID>[^<]+' | sed 's/RequestUUID>//') | ||
if [[ -z "$REQUEST_UUID" ]]; then | ||
echo "Failed to submit app for notarization." | ||
exit 1 | ||
fi | ||
echo "REQUEST_UUID=${REQUEST_UUID}" >> $GITHUB_ENV | ||
echo "Notarization submitted; RequestUUID: ${REQUEST_UUID}" | ||
- name: Poll for Notarization Status | ||
if: runner.os == 'macOS' && env.REQUEST_UUID != '' | ||
run: | | ||
echo "Polling for notarization status..." | ||
while : ; do | ||
STATUS_OUTPUT=$(xcrun altool --notarization-info $REQUEST_UUID --username ${{ secrets.APPLE_ID }} --password "@keychain:APP_SPECIFIC_PASSWORD" --output-format xml) | ||
echo "${STATUS_OUTPUT}" | ||
if echo "${STATUS_OUTPUT}" | grep -q 'Status: success'; then | ||
echo "Notarization succeeded." | ||
break | ||
elif echo "${STATUS_OUTPUT}" | grep -q 'Status: in progress'; then | ||
echo "Notarization still in progress, sleeping for 2 minutes..." | ||
sleep 120 | ||
else | ||
echo "Notarization failed." | ||
exit 1 | ||
fi | ||
done | ||
- name: Staple Notarization Ticket | ||
if: runner.os == 'macOS' | ||
run: | | ||
echo "Stapling notarization ticket..." | ||
xcrun stapler staple "${{ github.workspace }}/dist/selfie/Selfie.app" | ||
- name: Upload Artifact | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: ${{ github.event.inputs.artifact_name || format('{0}-build', matrix.os) }} | ||
path: dist | ||
overwrite: true | ||
|
||
- name: Clean up keychain and provisioning profile | ||
if: runner.os == 'macOS' | ||
run: | | ||
security delete-keychain $RUNNER_TEMP/github-actions.keychain-db | ||
rm ~/Library/MobileDevice/Provisioning\ Profiles/apple_provisioning_profile.provisionprofile | ||
# security delete-keychain $KEYCHAIN_PATH | ||
# rm $PROVISIONING_PROFILE_PATH |
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 |
---|---|---|
@@ -0,0 +1,46 @@ | ||
#!/bin/bash | ||
|
||
# Variables | ||
APP_NAME="Selfie" | ||
BUNDLE_IDENTIFIER="com.vana.selfie" | ||
VERSION="0.1.0" | ||
EXECUTABLE_NAME="selfie" | ||
DIST_DIR="dist/selfie" | ||
APP_DIR="${DIST_DIR}/${APP_NAME}.app" | ||
CONTENTS_DIR="${APP_DIR}/Contents" | ||
MACOS_DIR="${CONTENTS_DIR}/MacOS" | ||
RESOURCES_DIR="${CONTENTS_DIR}/Resources" | ||
INFO_PLIST="${CONTENTS_DIR}/Info.plist" | ||
|
||
# Create .app directory structure | ||
mkdir -p "${MACOS_DIR}" | ||
mkdir -p "${RESOURCES_DIR}" | ||
|
||
# Move the executable | ||
mv "${DIST_DIR}/${EXECUTABLE_NAME}" "${MACOS_DIR}/" | ||
|
||
# Move resources and libraries | ||
mv "${DIST_DIR}/_internal" "${RESOURCES_DIR}/" | ||
#mv "${DIST_DIR}/_internal/data" "${RESOURCES_DIR}/data" | ||
|
||
# Create Info.plist | ||
cat <<EOF > "${INFO_PLIST}" | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>CFBundleExecutable</key> | ||
<string>${EXECUTABLE_NAME}</string> | ||
<key>CFBundleIdentifier</key> | ||
<string>${BUNDLE_IDENTIFIER}</string> | ||
<key>CFBundleName</key> | ||
<string>${APP_NAME}</string> | ||
<key>CFBundleVersion</key> | ||
<string>${VERSION}</string> | ||
<key>CFBundlePackageType</key> | ||
<string>APPL</string> | ||
</dict> | ||
</plist> | ||
EOF | ||
|
||
echo "${APP_NAME}.app bundle has been created." |