Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 5 additions & 15 deletions .github/workflows/eas-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,24 +21,14 @@ jobs:
- name: Install EAS CLI
run: npm install -g eas-cli

- name: Authenticate with EAS
run: eas whoami
env:
EAS_BUILD_TOKEN: ${{ secrets.EAS_BUILD_TOKEN }}
# - name: Authenticate with EAS
# env:
# EAS_BUILD_TOKEN: ${{ secrets.EXPO_TOKEN }}

- name: Install dependencies
run: npm install

- name: Build Android app with EAS
run: eas build --platform android --profile production --non-interactive
run: eas build --platform android --profile apk --non-interactive
env:
EAS_BUILD_TOKEN: ${{ secrets.EAS_BUILD_TOKEN }}

# - name: Submit to Google Play
# run: |
# eas submit --platform android \
# --key ./google-service-account.json \
# --track internal
# env:
# EAS_BUILD_TOKEN: ${{ secrets.EAS_BUILD_TOKEN }}
# # Submit 시 필요한 추가 Secret이 있다면 여기에 추가
EAS_BUILD_TOKEN: ${{ secrets.EXPO_TOKEN }}
Loading