Skip to content

Merge pull request #17 from objectstack-ai/copilot/integrate-sentry-e… #5

Merge pull request #17 from objectstack-ai/copilot/integrate-sentry-e…

Merge pull request #17 from objectstack-ai/copilot/integrate-sentry-e… #5

Workflow file for this run

name: EAS Update (OTA)
on:
push:
branches: [main]
workflow_dispatch:
inputs:
message:
description: "Update message"
required: false
default: "OTA update"
permissions:
contents: read
jobs:
update:
name: Publish OTA Update
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- uses: expo/expo-github-action@v8
with:
eas-version: latest
token: ${{ secrets.EXPO_TOKEN }}
- run: npm ci --legacy-peer-deps
- name: Publish update
run: eas update --auto --non-interactive --message "${{ inputs.message || 'OTA update' }}"