Try expo update #8
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: CI/CD | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
name: Create build | |
environment: Production | |
runs-on: ubuntu-latest | |
steps: | |
- name: π Setup repo | |
uses: actions/checkout@v3 | |
- name: π Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18.20.4 | |
cache: npm | |
- name: π Setup EAS | |
uses: expo/expo-github-action@v8 | |
with: | |
eas-version: latest | |
token: ${{ secrets.EXPO_TOKEN }} | |
packager: npm | |
- name: π¦ Install dependencies | |
run: npm install | |
# - name: π Build app | |
# run: eas build --non-interactive --platform android --profile production --auto-submit | |
- name: π Create update | |
run: eas update --auto --non-interactive --channel production |