Skip to content

Commit 98ae255

Browse files
Include debug bundles in artifacts
1 parent b5d07cc commit 98ae255

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

.github/workflows/pull-requests.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,5 +62,7 @@ jobs:
6262
with:
6363
name: opendtu-app
6464
if-no-files-found: error
65-
path: android/app/build/outputs/apk/release/*.apk
65+
path: |
66+
android/app/build/outputs/apk/release/*.apk
67+
android/app/build/generated/assets/react/release/index.android.bundle
6668

.github/workflows/release.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,9 @@ jobs:
8787
uses: actions/upload-artifact@v4
8888
with:
8989
name: opendtu-app
90-
path: android/app/build/outputs/apk/release/*.apk
90+
path: |
91+
android/app/build/outputs/apk/release/*.apk
92+
android/app/build/generated/assets/react/release/index.android.bundle
9193
if-no-files-found: error
9294

9395
# skip release creation if this is not a tag push
@@ -98,4 +100,6 @@ jobs:
98100
with:
99101
generate_release_notes: true
100102
prerelease: false
101-
files: android/app/build/outputs/apk/release/*-signed.apk
103+
files: |
104+
android/app/build/outputs/apk/release/*-signed.apk
105+
android/app/build/generated/assets/react/release/index.android.bundle

0 commit comments

Comments
 (0)