Skip to content

Commit d9bca63

Browse files
committed
CHANGE actions utput folder fix
1 parent 9f727f6 commit d9bca63

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/debug.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
with:
2222
name: ${{ github.event.repository.name }}-${{ github.run_number }}-dev-debug-apk
2323
path: |
24-
${{ github.workspace }}/app/build/outputs/apk/devDebug/app-dev-debug.apk
24+
${{ github.workspace }}/app/build/outputs/apk/dev/debug/app-dev-debug.apk
2525
2626
- name: Build Prod APK
2727
run: ./gradlew assembleProdDebug --stacktrace
@@ -31,4 +31,4 @@ jobs:
3131
with:
3232
name: ${{ github.event.repository.name }}_${{ github.run_number }}-prod-debug-apk
3333
path: |
34-
${{ github.workspace }}/app/build/outputs/apk/prodDebug/app-prod-debug.apk
34+
${{ github.workspace }}/app/build/outputs/apk/prod/debug/app-prod-debug.apk

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
with:
4545
name: ${{ github.event.repository.name }}-${{ github.run_number }}-prod-release-apk
4646
path: |
47-
${{ github.workspace }}/app/build/outputs/apk/prodRelease/app-prod-release.apk
47+
${{ github.workspace }}/app/build/outputs/apk/prod/release/app-prod-release.apk
4848
4949
- name: Build Prod Release Bundle
5050
env:
@@ -58,4 +58,4 @@ jobs:
5858
with:
5959
name: ${{ github.event.repository.name }}-${{ github.run_number }}-prod-release-bundle
6060
path: |
61-
${{ github.workspace }}/app/build/outputs/bundle/prodRelease/app-prod-release.aab
61+
${{ github.workspace }}/app/build/outputs/bundle/prod/release/app-prod-release.aab

0 commit comments

Comments
 (0)