chore: Bump XMTP Version #397
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: Android App APK Build | |
on: | |
pull_request: | |
branches: | |
- main | |
- release/* | |
paths: | |
- "android/**" | |
- "package.json" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup repo | |
uses: actions/checkout@v4 | |
- name: Setup node | |
uses: actions/setup-node@v4.0.2 | |
with: | |
node-version: 20.18.0 | |
cache: "yarn" | |
- name: 🏗 Setup EAS | |
uses: expo/expo-github-action@v8 | |
with: | |
eas-version: latest | |
token: ${{ secrets.EXPO_TOKEN }} | |
- name: Install dependencies | |
run: yarn install | |
- name: Build Android app | |
run: eas build --profile development --platform android --non-interactive |