Final user update #14
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: update | |
on: push | |
jobs: | |
update: | |
name: EAS Update for Frontend | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18.x | |
cache: npm | |
- name: Check for EXPO_TOKEN | |
run: | | |
if [ -z "${{ secrets.EXPO_TOKEN }}" ]; then | |
echo "You must provide an EXPO_TOKEN secret linked to this project's Expo account in this repo's secrets. Learn more: https://docs.expo.dev/eas-update/github-actions" | |
exit 1 | |
fi | |
- name: Setup EAS | |
uses: expo/expo-github-action@v8 | |
with: | |
expo-version: latest # Or specify a specific version | |
eas-version: latest | |
token: ${{ secrets.EXPO_TOKEN }} | |
- name: Install frontend dependencies | |
run: npm install | |
working-directory: ./Frontend | |
- name: Publish frontend update | |
run: eas update --auto | |
working-directory: ./Frontend |