Skip to content

Commit 1ceafab

Browse files
committed
chore: Fix Android app is not uploaded as an artifact
1 parent 1da4b53 commit 1ceafab

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/new_tag_release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -381,7 +381,7 @@ jobs:
381381
run: ./gradlew :androidApp:${{ matrix.config.build-type }}${{ matrix.config.flavor }}Release
382382
- name: 'Upload .apk'
383383
uses: actions/upload-artifact@v6
384-
if: matrix.os == 'assemble'
384+
if: matrix.config.os == 'assemble'
385385
with:
386386
name: app-android-apk
387387
path: |
@@ -390,7 +390,7 @@ jobs:
390390
retention-days: 1
391391
- name: 'Upload .aab'
392392
uses: actions/upload-artifact@v6
393-
if: matrix.os == 'bundle'
393+
if: matrix.config.os == 'bundle'
394394
with:
395395
name: app-android-aab
396396
path: |

0 commit comments

Comments
 (0)