mirror of
https://github.com/SrIzan10/featheroom.git
synced 2026-06-06 00:56:49 +00:00
33 lines
643 B
YAML
33 lines
643 B
YAML
name: EAS Update
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
# push:
|
|
# branches:
|
|
# - main
|
|
|
|
jobs:
|
|
update:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: 🏗 Setup repo
|
|
uses: actions/checkout@v4
|
|
|
|
- name: 🏗 Setup Node
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: 18.x
|
|
cache: yarn
|
|
|
|
- name: 🏗 Setup EAS
|
|
uses: expo/expo-github-action@v8
|
|
with:
|
|
eas-version: latest
|
|
token: ${{ secrets.EXPO_TOKEN }}
|
|
|
|
- name: 📦 Install dependencies
|
|
run: yarn install
|
|
|
|
- name: 🚀 Create update
|
|
run: eas update --auto --non-interactive
|