Delete .expo/xcodebuild.log #9
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
on: | ||
push: | ||
tags: | ||
- v** | ||
name: π build and upload to app stores | ||
jobs: | ||
release: | ||
name: Release | ||
runs-on: ubuntu-latest | ||
env: | ||
STA_API_BASE_URL: https://the-sta.com | ||
STA_API_VERSION: v1 | ||
FEATURES_ENABLED: "" | ||
steps: | ||
- name: π Setup repo | ||
uses: actions/checkout@v4 | ||
- name: π Setup Node | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: 18.14 | ||
cache: 'npm' | ||
- name: π¦ Install dependencies | ||
run: npm ci | ||
- name: π Setup EAS | ||
uses: expo/expo-github-action@v7 | ||
with: | ||
eas-version: latest | ||
token: ${{ secrets.EXPO_ACCESS_TOKEN }} | ||
- name: π Build app | ||
run: eas build --non-interactive --platform all --auto-submit --no-wait |