fix(ui-ux): fixed address book forgets saved addresses when user swit… #2186
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 Main Preview | |
on: | |
push: | |
branches: [main] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
publish: | |
name: Publish | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3 | |
- uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3.6.0 | |
with: | |
node-version: 16 | |
- uses: expo/expo-github-action@4479f0b3692e25169fa71a02c30d6586ec2f5601 # tag=v7.2.0 | |
with: | |
expo-version: latest | |
eas-version: latest | |
expo-cache: true | |
eas-cache: true | |
packager: npm | |
token: ${{ secrets.EXPO_TOKEN }} | |
- run: npm ci | |
- run: eas update --auto --branch main --message 'Update with commit ${{ github.sha }}' | |
env: | |
EAS_PROJECT_ID: ${{ secrets.EAS_PROJECT_ID }} |