Skip to content

Move all default bird buttons further to the left #11

Move all default bird buttons further to the left

Move all default bird buttons further to the left #11

Workflow file for this run

name: Build Android APK
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
# Install new Expo CLI
- run: npm install -g expo
# Install dependencies
- run: npm install
# Verify environment variables are available
- name: Verify environment variables
run: |
echo "🔍 Checking environment variables..."
# Run prebuild (Android only)
# app.config.js will read from process.env directly (no .env file needed)
- name: Run Expo prebuild
run: expo prebuild --platform android --clean
# Build APK
- run: cd android && ./gradlew assembleRelease
# Upload APK artifact
- uses: actions/upload-artifact@v4
with:
name: app-release.apk
path: android/app/build/outputs/apk/release/app-release.apk