xref: /expo/.github/workflows/client-android.yml (revision 97ff2dea)
1name: Android Client
2
3on:
4  workflow_dispatch:
5    inputs:
6      releaseAPK:
7        description: 'type "release-apk" to confirm upload to S3'
8        required: false
9      releaseGooglePlay:
10        description: 'type "release-google-play" to confirm release to Google Play'
11        required: false
12  schedule:
13    - cron: '20 5 * * 1,3,5' # 5:20 AM UTC time on every Monday, Wednesday and Friday
14  pull_request:
15    paths:
16      - .github/workflows/client-android.yml
17      - secrets/**
18      - android/**
19      - fastlane/**
20      - Gemfile.lock
21      - .ruby-version
22      - yarn.lock
23  push:
24    branches: [main, sdk-*]
25    paths:
26      - .github/workflows/client-android.yml
27      - secrets/**
28      - android/**
29      - fastlane/**
30      - Gemfile.lock
31      - .ruby-version
32      - yarn.lock
33
34concurrency:
35  group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref }}
36  cancel-in-progress: true
37
38jobs:
39  build:
40    runs-on: ubuntu-22.04
41    env:
42      GRADLE_OPTS: -Dorg.gradle.jvmargs=-Xmx3072m -XX:MaxMetaspaceSize=1024m
43    steps:
44      - name: �� Checkout
45        uses: actions/checkout@v3
46        with:
47          submodules: true
48      - name: �� Use JDK 11
49        uses: actions/setup-java@v3
50        with:
51          distribution: 'temurin'
52          java-version: '11'
53      - name: �� Setup Ruby and install gems
54        uses: ruby/setup-ruby@v1
55        with:
56          bundler-cache: true
57      - name: ♻️ Restore caches
58        uses: ./.github/actions/expo-caches
59        id: expo-caches
60        with:
61          yarn-workspace: 'true'
62          yarn-tools: 'true'
63          gradle: 'true'
64          hermes-engine-aar: 'true'
65          ndk: 'true'
66          react-native-gradle-downloads: 'true'
67      - name: ➕ Add `bin` to GITHUB_PATH
68        run: echo "$(pwd)/bin" >> $GITHUB_PATH
69      - name: �� Yarn install
70        if: steps.expo-caches.outputs.yarn-workspace-hit != 'true'
71        run: yarn install --frozen-lockfile
72      - name: �� Decrypt secrets if possible
73        uses: ./.github/actions/expo-git-decrypt
74        with:
75          key: ${{ secrets.GIT_CRYPT_KEY_BASE64 }}
76      - name: �� Check which flavor to build
77        id: flavor
78        uses: dorny/paths-filter@v2
79        with:
80          # this action fails when base is not set on schedule event
81          base: ${{ github.ref }}
82          filters: |
83            versioned:
84              - android/versioned-abis/**
85              - android/versioned-react-native/**
86              - android/expoview/src/versioned/**
87              - android/expoview/src/main/java/versioned/**
88              - android/**/*.gradle
89      - name: �� Build APK
90        env:
91          ANDROID_KEYSTORE_B64: ${{ secrets.ANDROID_KEYSTORE_B64 }}
92          ANDROID_KEYSTORE_PASSWORD: ${{ secrets.ANDROID_KEYSTORE_PASSWORD }}
93          ANDROID_KEY_ALIAS: ExponentKey
94          ANDROID_KEY_PASSWORD: ${{ secrets.ANDROID_KEY_PASSWORD }}
95          IS_APP_BUNDLE: ${{ github.event.inputs.releaseGooglePlay == 'release-google-play' }}
96          IS_RELEASE_BUILD: ${{ github.event.inputs.releaseAPK == 'release-apk' || github.event.inputs.releaseGooglePlay == 'release-google-play' }}
97          IS_VERSIONED_FLAVOR: ${{ github.event_name == 'schedule' || steps.flavor.outputs.versioned == 'true' }}
98        run: |
99          if [ "$IS_RELEASE_BUILD" == "false" ]; then
100            export ORG_GRADLE_PROJECT_reactNativeArchitectures="x86_64"
101            BUILD_TYPE="Debug"
102            echo "Using ABI filters: $ORG_GRADLE_PROJECT_reactNativeArchitectures"
103          else
104            BUILD_TYPE="Release"
105          fi
106          [[ "$IS_VERSIONED_FLAVOR" == "true" ]] && FLAVOR="Versioned" || FLAVOR="Unversioned"
107          echo "Building with $FLAVOR flavor"
108          if [ -z "$ANDROID_KEYSTORE_B64" ]; then
109            echo "External build detected, APK will not be signed"
110            fastlane android build build_type:$BUILD_TYPE flavor:$FLAVOR sign:false
111          else
112            echo "Internal build detected, APK will be signed"
113            echo $ANDROID_KEYSTORE_B64 | base64 -d > android/app/release-key.jks
114            fastlane android build build_type:$BUILD_TYPE flavor:$FLAVOR aab:$IS_APP_BUNDLE
115          fi
116      - name: �� Upload APK artifact
117        uses: actions/upload-artifact@v3
118        with:
119          name: android-apk
120          path: android/app/build/outputs/apk
121      - name: �� Store daemon logs for debugging crashes
122        if: failure()
123        uses: actions/upload-artifact@v3
124        with:
125          name: gradle-daemon-logs
126          path: ~/.gradle/daemon
127      - name: �� Upload APK to S3 and update staging versions endpoint
128        if: ${{ github.event.inputs.releaseAPK == 'release-apk' }}
129        run: expotools client-build --platform android --release
130        env:
131          AWS_ACCESS_KEY_ID: AKIAJ3SWUQ4QLNQC7FXA
132          AWS_SECRET_ACCESS_KEY: ${{ secrets.android_client_build_aws_secret_key }}
133          AWS_DEFAULT_REGION: 'us-east-1'
134          EXPO_VERSIONS_SECRET: ${{ secrets.expo_versions_secret }}
135      - name: �� Upload APK to Google Play and release to production
136        if: ${{ github.event.inputs.releaseGooglePlay == 'release-google-play' }}
137        run: fastlane android prod_release
138        env:
139          SUPPLY_JSON_KEY_DATA: ${{ secrets.SUPPLY_JSON_KEY_DATA }}
140      - name: �� Notify on Slack
141        uses: 8398a7/action-slack@v3
142        if: failure() && (github.event.ref == 'refs/heads/main' || startsWith(github.event.ref, 'refs/heads/sdk-'))
143        env:
144          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
145          SLACK_WEBHOOK_URL: ${{ secrets.slack_webhook_android }}
146        with:
147          channel: '#expo-android'
148          status: ${{ job.status }}
149          fields: job,message,ref,eventName,author,took
150          author_name: Expo Go (Android)
151