Skip to content

Commit

Permalink
fix: 빌드 파일의 upload 경로 4차 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
Junyoung-WON committed Aug 22, 2024
1 parent f8e0392 commit 9b5a246
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/android-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,20 +78,20 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: app-release.apk
path: app/release/app-release.apk
path: android/Staccato_AN/app/build/outputs/apk/release/app-release.apk
if-no-files-found: error

- name: Upload Release AAB
uses: actions/upload-artifact@v3
with:
name: app-release.aab
path: app/release/app-release.aab
path: android/Staccato_AN/app/build/outputs/bundle/release/app-release.aab
if-no-files-found: error

- name: Upload On Google Play
uses: r0adkll/upload-google-play@v1
with:
serviceAccountJsonPlainText: ${{ secrets.SERVICE_ACCOUNT_JSON }}
packageName: com.woowacourse.staccato
releaseFiles: app/release/app-release.aab
releaseFiles: android/Staccato_AN/app/build/outputs/bundle/release/app-release.aab
track: internal
6 changes: 3 additions & 3 deletions .github/workflows/android-ci-cd-demo-apk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,8 @@ jobs:
- name: Upload Debug APK
uses: actions/upload-artifact@v3
with:
name: debug-apk
path: app/debug/app-debug.apk
name: app-debug.apk
path: android/Staccato_AN/app/build/outputs/apk/debug/app-debug.apk
if-no-files-found: error

- name: Upload Artifact to Firebase App Distribution
Expand All @@ -84,4 +84,4 @@ jobs:
appId: ${{secrets.FIREBASE_APP_ID}}
serviceCredentialsFileContent: ${{ secrets.CREDENTIAL_FILE_CONTENT }}
groups: staccato_tester
file: app/debug/app-debug.apk
file: android/Staccato_AN/app/build/outputs/apk/debug/app-debug.apk

0 comments on commit 9b5a246

Please sign in to comment.