Skip to content

Start UI Native V3

Start UI Native V3 #1

Workflow file for this run

name: πŸ”¨ EAS build
env:
EXPO_PUBLIC_API_URL: ${{ vars.API_URL }}
EXPO_PUBLIC_AUTH_URL: ${{ vars.AUTH_URL }}
EXPO_PUBLIC_OPENAPI_URL: ${{ vars.OPENAPI_URL }}
on:
push:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: πŸ— Setup repo
uses: actions/checkout@v5
- name: πŸ— Setup Node
uses: actions/setup-node@v5
with:
node-version: 'lts/*'
cache: 'pnpm'
- name: πŸ— Setup EAS
uses: expo/expo-github-action@v8
with:
eas-version: latest
token: ${{ secrets.EXPO_TOKEN }}
- name: πŸ“¦ Install dependencies
run: pnpm install
- name: πŸš€ Build app
run: eas build --non-interactive