Merge pull request #64 from Newgnal/publish #10
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: EAS Build and Submit (Android) | |
| on: | |
| push: | |
| branches: | |
| - publish | |
| jobs: | |
| build-android: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v3 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: 18 | |
| - name: Install EAS CLI | |
| run: npm install -g eas-cli | |
| - name: Install dependencies | |
| run: npm install | |
| - name: Build Android app with EAS | |
| run: eas build --platform android --profile apk --non-interactive | |
| env: | |
| EXPO_TOKEN: ${{ secrets.EXPO_TOKEN }} |