We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb8b6de commit acce39fCopy full SHA for acce39f
.forgejo/workflows/build-debug.yml
@@ -35,11 +35,12 @@ jobs:
35
- name: Build Debug APKs
36
run: ./gradlew --no-daemon assembleDebug
37
38
+ - name: Copy Artifacts
39
+ run: find . -name 'app*-debug.apk' -exec cp {} . \;
40
+
41
- name: Upload Artifacts
42
uses: https://gitea.angry.im/actions/upload-artifact@v3
43
with:
44
name: Debug APKs
45
compression-level: 0
- path: |
- app-unpriv/build/outputs/apk/debug/app-unpriv-debug.apk
- app/build/outputs/apk/debug/app-debug.apk
46
+ path: app*-debug.apk
0 commit comments