Skip to content

[Fix] Kotlin 버전 2.1.20으로 업그레이드 - KSP 호환성 수정 #34

[Fix] Kotlin 버전 2.1.20으로 업그레이드 - KSP 호환성 수정

[Fix] Kotlin 버전 2.1.20으로 업그레이드 - KSP 호환성 수정 #34

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"