Move all default bird buttons further to the left #11
This file contains hidden or 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: 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 | |