Skip to content

feat(#31): app deployment ci #9

feat(#31): app deployment ci

feat(#31): app deployment ci #9

Workflow file for this run

on:
push:
branches:
- publish
- ft-app-deployment
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 }}