Skip to content

Commit

Permalink
fix: 디버그용 파일 경로 검색 명령어 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
Junyoung-WON committed Aug 22, 2024
1 parent 2d2ec98 commit f02f15d
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 2 deletions.
14 changes: 13 additions & 1 deletion .github/workflows/android-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,10 +71,22 @@ jobs:
- name: Build Release AAB
run: ./gradlew bundleRelease

- name: check APK directory
- name: check APK directory 1
run: |
ls -R android/Staccato_AN/app/debug/
- name: check AAB directory 1
run: |
ls -R android/Staccato_AN/app/release/
- name: check APK directory 2
run: |
ls -R android/Staccato_AN/app/build/outputs/apk/
- name: check AAB directory 2
run: |
ls -R android/Staccato_AN/app/build/outputs/bundle/
- name: Upload Release APK
uses: actions/upload-artifact@v3
with:
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/android-ci-cd-demo-apk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,11 @@ jobs:
name: app-debug.apk
path: ${{ github.workspace }}/android/Staccato_AN/app/build/outputs/apk/debug/*.apk

- name: check APK directory
- name: check APK directory 1
run: |
ls -R android/Staccato_AN/app/debug/
- name: check APK directory 2
run: |
ls -R android/Staccato_AN/app/build/outputs/apk/
Expand Down

0 comments on commit f02f15d

Please sign in to comment.