From c53899b42dc95503010631a6f5db1ad122512f5c Mon Sep 17 00:00:00 2001 From: hodu <92203597+Junyoung-WON@users.noreply.github.com> Date: Thu, 6 Feb 2025 22:47:11 +0900 Subject: [PATCH] =?UTF-8?q?build:=20Android=20CI&CD=20=EC=88=98=EC=A0=95?= =?UTF-8?q?=20#624=20(#625)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit build: upload-artifact 버전 업그레이드 --- .github/workflows/android-cd.yml | 6 ++++-- .github/workflows/android-ci-cd-dev.yml | 3 ++- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/android-cd.yml b/.github/workflows/android-cd.yml index e90fc373..e9a74508 100644 --- a/.github/workflows/android-cd.yml +++ b/.github/workflows/android-cd.yml @@ -71,16 +71,18 @@ jobs: run: ./gradlew bundleRelease - name: Upload Release APK in artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: app-release.apk path: android/Staccato_AN/app/build/outputs/apk/release/app-release.apk + overwrite: 'true' - name: Upload Release AAB in artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: app-release.aab path: android/Staccato_AN/app/build/outputs/bundle/release/app-release.aab + overwrite: 'true' - name: Deploy AAB On Google Play Console uses: r0adkll/upload-google-play@v1 diff --git a/.github/workflows/android-ci-cd-dev.yml b/.github/workflows/android-ci-cd-dev.yml index d1fbdee4..707e9de8 100644 --- a/.github/workflows/android-ci-cd-dev.yml +++ b/.github/workflows/android-ci-cd-dev.yml @@ -73,10 +73,11 @@ jobs: run: ./gradlew assembleRelease - name: Upload Release APK - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: app-release.apk path: android/Staccato_AN/app/build/outputs/apk/release/app-release.apk + overwrite: 'true' - name: Upload Artifact to Firebase App Distribution uses: wzieba/Firebase-Distribution-Github-Action@v1