EAS Build A Release Candidate #8
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: EAS Build A Release Candidate | |
on: | |
workflow_dispatch: | |
push: | |
tags: | |
- 'v[1].[0-9]+.[0-9]+/rc-*' | |
jobs: | |
build: | |
name: Install & build release candidate | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18.x | |
cache: npm | |
- name: Setup Expo & EAS | |
uses: expo/expo-github-action@v8 | |
with: | |
eas-version: latest | |
token: ${{ secrets.EXPO_TOKEN }} | |
- name: Install dependencies | |
run: npm ci | |
- name: Build on EAS | |
run: eas build --platform android --non-interactive --no-wait --profile preview |