Delete .github/workflows/eas-update.yml

This commit is contained in:
2026-03-13 12:30:24 -04:00
committed by GitHub
parent c5d12482e2
commit 6252ace4c0
-33
View File
@@ -1,33 +0,0 @@
name: EAS Update
on:
pull_request:
paths:
- apps/native/**
- packages/api/**
jobs:
update:
name: EAS Update
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
- uses: oven-sh/setup-bun@v2
- name: Setup EAS
uses: expo/expo-github-action@v8
with:
eas-version: latest
token: ${{ secrets.EXPO_TOKEN }}
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Publish update
working-directory: apps/native
run: eas update --branch ${{ github.head_ref }} --message "${{ github.event.pull_request.title }}" --non-interactive