Release Mobile App #26
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: Release Mobile App | |
on: | |
workflow_dispatch: | |
inputs: | |
build-target: | |
description: 'Build Target' | |
type: choice | |
required: true | |
default: distribution | |
options: | |
- development | |
- distribution | |
build-type: | |
description: 'Build Type' | |
type: choice | |
required: true | |
default: canary | |
options: | |
- canary | |
- beta | |
- stable | |
env: | |
BUILD_TYPE: ${{ github.event.inputs.build-type }} | |
DEBUG: napi:* | |
KEYCHAIN_NAME: ${{ github.workspace }}/signing_temp.keychain | |
jobs: | |
build-mobile-web: | |
runs-on: ubuntu-latest | |
environment: ${{ github.event.inputs.build-type }} | |
outputs: | |
RELEASE_VERSION: ${{ steps.version.outputs.APP_VERSION }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Version | |
id: version | |
uses: ./.github/actions/setup-version | |
- name: Setup Node.js | |
uses: ./.github/actions/setup-node | |
- name: Setup @sentry/cli | |
uses: ./.github/actions/setup-sentry | |
- name: Build Mobile | |
run: yarn nx build @affine/mobile --skip-nx-cache | |
env: | |
PUBLIC_PATH: '/' | |
MIXPANEL_TOKEN: ${{ secrets.MIXPANEL_TOKEN }} | |
SENTRY_ORG: ${{ secrets.SENTRY_ORG }} | |
SENTRY_PROJECT: 'affine' | |
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }} | |
SENTRY_DSN: ${{ secrets.SENTRY_DSN }} | |
SENTRY_RELEASE: ${{ steps.version.outputs.APP_VERSION }} | |
RELEASE_VERSION: ${{ steps.version.outputs.APP_VERSION }} | |
SKIP_NX_CACHE: 'true' | |
- name: Upload mobile artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: mobile | |
path: packages/frontend/apps/mobile/dist | |
ios: | |
runs-on: macos-latest | |
needs: | |
- build-mobile-web | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Download mobile artifact | |
uses: actions/download-artifact@v4 | |
with: | |
name: mobile | |
path: packages/frontend/apps/mobile/dist | |
- name: Setup Node.js | |
uses: ./.github/actions/setup-node | |
timeout-minutes: 10 | |
with: | |
extra-flags: workspaces focus @affine/mobile | |
playwright-install: false | |
electron-install: false | |
hard-link-nm: false | |
enableScripts: false | |
- name: Cap sync | |
run: yarn workspace @affine/mobile cap sync | |
- name: Signing By Apple Developer ID | |
uses: apple-actions/import-codesign-certs@v3 | |
id: import-codesign-certs | |
with: | |
p12-file-base64: ${{ secrets.CERTIFICATES_P12 }} | |
p12-password: ${{ secrets.CERTIFICATES_P12_PASSWORD }} | |
keychain: ${{ env.KEYCHAIN_NAME }} | |
keychain-password: ${{ secrets.MATCH_KEYCHAIN_PASSWORD }} | |
- name: Testflight | |
if: ${{ github.event.inputs.build-type }} != 'stable' | |
working-directory: packages/frontend/apps/mobile/ios/App | |
run: | | |
fastlane beta | |
env: | |
BUILD_TARGET: ${{ github.event.inputs.build-target }} | |
APPLE_STORE_CONNECT_API_KEY: ${{ secrets.APPLE_STORE_CONNECT_API_KEY }} | |
APPLE_STORE_CONNECT_API_KEY_ID: ${{ secrets.APPLE_STORE_CONNECT_API_KEY_ID }} | |
APPLE_STORE_CONNECT_API_ISSUER_ID: ${{ secrets.APPLE_STORE_CONNECT_API_ISSUER_ID }} | |
MATCH_KEYCHAIN_PASSWORD: ${{ steps.import-codesign-certs.outputs.keychain-password }} | |
KEYCHAIN_PATH: ${{ env.KEYCHAIN_NAME }} |