fix(mobile): π minor style changes #451
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: build-and-publish-to-expo | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build-and-publish-to-expo: | |
runs-on: ubuntu-latest | |
steps: | |
- name: π Setup Repo | |
uses: actions/checkout@v4 | |
- name: π Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "18" | |
check-latest: true | |
cache: yarn | |
cache-dependency-path: mobile/yarn.lock | |
- name: π Setup EAS | |
uses: expo/expo-github-action@v8 | |
with: | |
eas-version: latest | |
token: ${{ secrets.EXPO_TOKEN }} | |
- name: π Set Publish URL | |
working-directory: ./mobile | |
run: cp ./constants/urls.publish.js ./constants/urls.js | |
- name: π¦ Install Dependencies | |
working-directory: ./mobile | |
run: yarn install | |
- name: π Publish App | |
working-directory: ./mobile | |
run: eas update --auto --non-interactive |