Skip to content

feature(ci): #RE-1662 no wait for build #5

feature(ci): #RE-1662 no wait for build

feature(ci): #RE-1662 no wait for build #5

name: Release branches
on:
push:
branches:
- 'ci/*'
env:
EAS_BUILD_PROFILE: development
jobs:
build-android:
runs-on: ubuntu-latest
steps:
- name: 🏗 Setup repo
uses: actions/checkout@v4
- name: 🛠️ Prepare node env
uses: ./.github/actions/setup-base
- name: 📦 Fetch dependencies
uses: ./.github/actions/dependencies
- name: 🧙🏻‍♂️ Setup EAS
uses: expo/expo-github-action@v8
with:
eas-version: latest
token: ${{ secrets.EXPO_TOKEN }}
- name: ⚙️ Compile android
run: eas build --platform android --profile=development --no-wait
concurrency:
group: '${{ github.workflow }}-${{ github.ref }}'
cancel-in-progress: true