feature(ci): #RE-1662 test iOS build #6
Workflow file for this run
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: 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 | |
build-ios: | |
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 ios --profile=development --no-wait --auto-submit | |
concurrency: | |
group: '${{ github.workflow }}-${{ github.ref }}' | |
cancel-in-progress: true |