Skip to content

add ascAppId

add ascAppId #10

Workflow file for this run

name: build
on:
push:
branches:
- main
jobs:
test:
uses: ./.github/workflows/test.yml
build:
needs: [test]
runs-on: ubuntu-latest
steps:
- name: πŸ— Setup repo
uses: actions/checkout@v3
- name: πŸ— Setup Node
uses: actions/setup-node@v3
with:
node-version: 18.x
cache: npm
- name: πŸ— Setup EAS
uses: expo/expo-github-action@v8
with:
eas-version: latest
token: ${{ secrets.EXPO_TOKEN }}
- name: πŸ“¦ Install dependencies
run: npm install
- name: πŸš€ Build ios app
run: eas build --platform ios --non-interactive --no-wait