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
9 changes: 6 additions & 3 deletions .github/workflows/eas-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,20 +22,23 @@ jobs:
run: npm install -g eas-cli

- name: Authenticate with EAS
run: eas whoami || eas login --token ${{ secrets.EAS_ACCESS_TOKEN }}
run: eas whoami
env:
EAS_BUILD_TOKEN: ${{ secrets.EAS_BUILD_TOKEN }}

- name: Install dependencies
run: npm install

- name: Build Android app with EAS
run: eas build --platform android --profile production --non-interactive
env:
EAS_ACCESS_TOKEN: ${{ secrets.EAS_ACCESS_TOKEN }}
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_ACCESS_TOKEN: ${{ secrets.EAS_ACCESS_TOKEN }}
# EAS_BUILD_TOKEN: ${{ secrets.EAS_BUILD_TOKEN }}
# # Submit 시 필요한 추가 Secret이 있다면 여기에 추가
Loading