Skip to content

ft(#4):ft-reset-password-flow (#45) #11

ft(#4):ft-reset-password-flow (#45)

ft(#4):ft-reset-password-flow (#45) #11

Workflow file for this run

on:
push:
branches:
- publish
jobs:
Publish:
runs-on: ubuntu-latest
steps:
- name: πŸ— Setup repo
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: πŸ— Setup Node
uses: actions/setup-node@v4
with:
node-version: 20.x
cache: npm
- name: πŸ— Setup EAS
uses: expo/expo-github-action@v8
with:
eas-version: latest
token: ${{ secrets.EXPO_TOKEN }}
- name: πŸ“¦ Install dependencies
run: npm install
- name: πŸš€ Build & Submit App
run: eas build --platform $PLATFORM --profile $PROFILE --auto-submit --non-interactive
env:
PLATFORM: ${{ vars.BUILD_PLATFORM }}
PROFILE: ${{ vars.BUILD_PROFILE }}
# This step will be deprecated and removed in the future once the google play account is created.
- name: πŸš€ Build Android App
run: eas build --platform android --profile $PROFILE --non-interactive
env:
PROFILE: ${{ vars.BUILD_PROFILE }}