Files
featheroom/.github/dont-workflows/eas-build.yml
2024-10-31 23:54:39 +01:00

28 lines
608 B
YAML

name: EAS Build
on:
workflow_dispatch:
# push:
# branches:
# - main
jobs:
build:
name: Install and build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18.x
cache: npm
- name: Setup Expo and EAS
uses: expo/expo-github-action@v8
with:
eas-version: latest
token: ${{ secrets.EXPO_TOKEN }}
- name: Install dependencies
run: npm ci
- name: Build on EAS
run: eas build --platform all --non-interactive --no-wait