Skip to content

Fix Android scrolling (2nd attempt) #84

Fix Android scrolling (2nd attempt)

Fix Android scrolling (2nd attempt) #84

Workflow file for this run

name: update
on:
push:
branches:
- main
jobs:
update:
name: EAS Update
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 20.x
cache: npm
- name: Set up EAS
uses: expo/expo-github-action@v8
with:
eas-version: latest
token: ${{ secrets.EXPO_TOKEN }}
- name: Install dependencies
run: npm ci
- name: Publish update
run: eas update --auto
env:
EXPO_PUBLIC_GOOGLE_OAUTH_IOS_SCHEME: ${{ secrets.EXPO_PUBLIC_GOOGLE_OAUTH_IOS_SCHEME }}