1.4.1 #15
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: Trigger Expo Build (iOS) | |
on: | |
push: | |
tags: | |
- '**' | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
environment: production | |
permissions: | |
contents: read | |
steps: | |
- name: Clone repo | |
uses: actions/checkout@v4 | |
- name: Setup Bun | |
uses: oven-sh/setup-bun@v2 | |
with: | |
bun-version: latest | |
- name: Setup EAS | |
uses: expo/expo-github-action@v8 | |
with: | |
eas-version: latest | |
expo-version: latest | |
token: ${{ secrets.EXPO_TOKEN }} | |
packager: bun | |
- name: Install dependencies | |
run: bun install --frozen-lockfile | |
- name: Set eas.json file - EXPO_PUBLIC_SETLISTFM_API_KEY | |
uses: jossef/[email protected] | |
with: | |
file: eas.json | |
field: build.production.env.EXPO_PUBLIC_SETLISTFM_API_KEY | |
value: ${{ secrets.EXPO_PUBLIC_SETLISTFM_API_KEY }} | |
- name: Set eas.json file - EXPO_PUBLIC_SPOTIFY_API_KEY | |
uses: jossef/[email protected] | |
with: | |
file: eas.json | |
field: build.production.env.EXPO_PUBLIC_SPOTIFY_API_KEY | |
value: ${{ secrets.EXPO_PUBLIC_SPOTIFY_API_KEY }} | |
- name: Set eas.json file - EXPO_PUBLIC_APPLE_MUSIC_DEV_TOKEN_ENDPOINT | |
uses: jossef/[email protected] | |
with: | |
file: eas.json | |
field: build.production.env.EXPO_PUBLIC_APPLE_MUSIC_DEV_TOKEN_ENDPOINT | |
value: ${{ secrets.EXPO_PUBLIC_APPLE_MUSIC_DEV_TOKEN_ENDPOINT }} | |
- name: Build app | |
run: eas build -p ios --non-interactive --no-wait -m="GitHub Actions - Run $GITHUB_RUN_ID" |