feat: expo 52 (#44) #55
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: EAS Build | |
on: | |
workflow_dispatch: | |
push: | |
tags: | |
- 'v[0-9]+.[0-9]+.[0-9]+' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
bun: ["1.1.42"] | |
name: Install and build with Bun ${{ matrix.bun }} | |
steps: | |
- name: Check for EXPO_TOKEN | |
run: | | |
if [ -z "${{ secrets.EXPO_TOKEN }}" ]; then | |
echo "You must provide an EXPO_TOKEN secret linked to this project's Expo account in this repo's secrets. Learn more: https://docs.expo.dev/eas-update/github-actions" | |
exit 1 | |
fi | |
- name: 🏗 Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 1 | |
- name: 🏗 Setup Bun | |
uses: oven-sh/setup-bun@v2 | |
with: | |
bun-version: ${{ matrix.node }} | |
- name: 🏗 Setup Expo and EAS | |
uses: expo/expo-github-action@v8 | |
with: | |
expo-version: latest | |
eas-version: latest | |
token: ${{ secrets.EXPO_TOKEN }} | |
- name: 📦 Install dependencies | |
run: bun install | |
- name: 🚀 Build on EAS | |
run: eas build --platform all --non-interactive --auto-submit | |
env: | |
EAS_PROJECT_ID: ${{ secrets.EAS_PROJECT_ID }} | |
EXPO_APPLE_TEAM_ID: ${{ secrets.EXPO_APPLE_TEAM_ID }} | |
EXPO_APPLE_TEAM_TYPE: ${{ secrets.EXPO_APPLE_TEAM_TYPE }} | |
EXPO_APP_ID: ${{ secrets.EXPO_APP_ID }} | |
EXPO_ASC_APP_ID: ${{ secrets.EXPO_ASC_APP_ID }} | |
EXPO_ASC_ISSUER_ID: ${{ secrets.EXPO_ASC_ISSUER_ID }} | |
EXPO_ASC_KEY_ID: ${{ secrets.EXPO_ASC_KEY_ID }} | |