Merge pull request #394 from PedroBern/fix-conditionallazypanesync #197
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: Expo Publish | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
publish: | |
name: Install and publish | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: 14.x | |
- uses: expo/expo-github-action@v5 | |
with: | |
expo-version: 4.x | |
expo-token: ${{ secrets.EXPO_TOKEN }} | |
- name: Install dependencies | |
run: yarn install --frozen-lockfile | |
working-directory: ./example | |
- name: Publish Expo app | |
run: expo publish | |
working-directory: ./example |