33 lines
717 B
YAML
33 lines
717 B
YAML
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
jobs:
|
|
update:
|
|
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: pnpm
|
|
|
|
- name: 🏗 Setup pnpm
|
|
uses: pnpm/action-setup@v2
|
|
with:
|
|
version: latest
|
|
|
|
- name: 🏗 Setup EAS
|
|
uses: expo/expo-github-action@v8
|
|
with:
|
|
eas-version: latest
|
|
token: ${{ secrets.EXPO_TOKEN }}
|
|
|
|
- name: 📦 Install dependencies
|
|
run: pnpm install
|
|
|
|
- name: 🚀 Create update
|
|
run: eas update --platform android --non-interactive |