From 31dccb0d58978b76c7ddec4f71d6de84f2ad0396 Mon Sep 17 00:00:00 2001 From: DaheeJang Date: Sat, 19 Jul 2025 23:02:24 +0900 Subject: [PATCH 1/2] =?UTF-8?q?Feat:=20eas-build.yml=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/eas-build.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/eas-build.yml b/.github/workflows/eas-build.yml index da02ba5..de7ffe8 100644 --- a/.github/workflows/eas-build.yml +++ b/.github/workflows/eas-build.yml @@ -21,10 +21,9 @@ 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.EAS_BUILD_TOKEN }} - name: Install dependencies run: npm install From 6b42e60d453a54a973c82fc18ee078ddb07d8fbc Mon Sep 17 00:00:00 2001 From: DaheeJang Date: Sat, 19 Jul 2025 23:16:02 +0900 Subject: [PATCH 2/2] =?UTF-8?q?Feat:=20eas-build.yml=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/eas-build.yml | 15 +++------------ 1 file changed, 3 insertions(+), 12 deletions(-) diff --git a/.github/workflows/eas-build.yml b/.github/workflows/eas-build.yml index de7ffe8..c8671c9 100644 --- a/.github/workflows/eas-build.yml +++ b/.github/workflows/eas-build.yml @@ -23,21 +23,12 @@ jobs: # - name: Authenticate with EAS # env: - # EAS_BUILD_TOKEN: ${{ secrets.EAS_BUILD_TOKEN }} + # 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 }}