Skip to content

Merge pull request #349 from AugistineCreates/feature/keyboard-naviga… #35

Merge pull request #349 from AugistineCreates/feature/keyboard-naviga…

Merge pull request #349 from AugistineCreates/feature/keyboard-naviga… #35

Workflow file for this run

name: Mobile Preview Build

Check failure on line 1 in .github/workflows/mobile.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/mobile.yml

Invalid workflow file

(Line: 27, Col: 13): Unrecognized named-value: 'secrets'. Located at position 1 within expression: secrets.EXPO_TOKEN != ''
on:
push:
branches: [main]
jobs:
build:
name: EAS Preview Build
runs-on: ubuntu-latest
defaults:
run:
working-directory: mobile
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "20"
cache: "npm"
cache-dependency-path: mobile/package-lock.json
- run: npm ci
- uses: expo/expo-github-action@v8
with:
eas-version: latest
token: ${{ secrets.EXPO_TOKEN }}
- run: eas build --platform all --profile preview --non-interactive
if: ${{ secrets.EXPO_TOKEN != '' }}