Skip to content

Main update

Main update #77

Workflow file for this run

name: Publish EAS Update for PR
on: [pull_request]
jobs:
publish:
runs-on: ubuntu-22.04
steps:
- name: πŸ— Setup repo
uses: actions/[email protected]
- name: πŸ— Setup Node
uses: actions/[email protected]
with:
node-version: 18
- name: πŸ— Setup Expo
uses: expo/expo-github-action@v7
with:
expo-version: latest
eas-version: latest
token: ${{ secrets.EXPO_TOKEN }}
- name: πŸ“¦ Install dependencies
run: npm install
- name: πŸš€ Publish preview
run: eas update --auto --branch=pr-${{ github.event.number }} --non-interactive
- name: πŸ’¬ Comment preview
uses: expo/expo-github-action/preview-comment@v7
with:
channel: pr-${{ github.event.number }}