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 f02f15d commit e205e1a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 31 deletions.
24 changes: 2 additions & 22 deletions .github/workflows/android-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,40 +71,20 @@ jobs:
- name: Build Release AAB
run: ./gradlew bundleRelease

- 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:
name: app-release.apk
path: ${{ github.workspace }}/android/Staccato_AN/app/build/outputs/apk/release/*.apk
path: android/Staccato_AN/app/build/outputs/apk/release/*.apk

- name: Debug APK Path Issue
run: find android/Staccato_AN/app/build/outputs/apk/ -name "*.apk"

- name: check AAB directory
run: |
ls -R android/Staccato_AN/app/build/outputs/bundle/
- name: Upload Release AAB
uses: actions/upload-artifact@v3
with:
name: app-release.aab
path: ${{ github.workspace }}/android/Staccato_AN/app/build/outputs/bundle/release/*.aab
path: android/Staccato_AN/app/build/outputs/bundle/release/*.aab

- name: Debug AAB Path Issue
run: find android/Staccato_AN/app/build/outputs/bundle/ -name "*.aab"
Expand Down
10 changes: 1 addition & 9 deletions .github/workflows/android-ci-cd-demo-apk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,15 +72,7 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: app-debug.apk
path: ${{ github.workspace }}/android/Staccato_AN/app/build/outputs/apk/debug/*.apk

- 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/
path: android/Staccato_AN/app/build/outputs/apk/debug/*.apk

- name: Debug APK Path Issue
run: find android/Staccato_AN/app/build/outputs/apk/ -name "*.apk"
Expand Down

0 comments on commit e205e1a

Please sign in to comment.