Skip to content

[Feat] 백엔드 API 변경사항에 따른 모바일 앱 API 경로 동기화 (#41) #28

[Feat] 백엔드 API 변경사항에 따른 모바일 앱 API 경로 동기화 (#41)

[Feat] 백엔드 API 변경사항에 따른 모바일 앱 API 경로 동기화 (#41) #28

Workflow file for this run

name: EAS Update (develop)
on:
push:
branches:
- develop
jobs:
update:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- name: Install dependencies
run: npm ci
- name: Setup Expo (EAS)
uses: expo/expo-github-action@v8
with:
eas-version: latest
token: ${{ secrets.EXPO_TOKEN }}
- name: Publish update
env:
COMMIT_MESSAGE: ${{ github.event.head_commit.message }}
run: eas update --branch develop --message "$COMMIT_MESSAGE"