We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ef947e commit 701e3f1Copy full SHA for 701e3f1
.github/workflows/android.yml
@@ -33,7 +33,7 @@ jobs:
33
run: chmod +x gradlew
34
# APK Debug
35
- name: Build debug APK
36
- run: ./gradlew assemble${{ env.variant }}Debug
+ run: ./gradlew :${{ env.module }}:assemble${{ env.variant }}Debug
37
# Upload apk
38
- name: Upload debug APK
39
uses: actions/upload-artifact@v3
@@ -58,7 +58,7 @@ jobs:
58
59
# APK Release
60
- name: Build release APK
61
- run: ./gradlew assemble${{ env.variant }}
+ run: ./gradlew :${{ env.module }}:assemble${{ env.variant }}
62
63
- name: Upload release APK
64
0 commit comments