We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af45cc1 commit f2c2a75Copy full SHA for f2c2a75
.github/workflows/commit-ci.yml
@@ -55,7 +55,23 @@ jobs:
55
- name: Upload Trime artifact
56
uses: actions/upload-artifact@v3
57
with:
58
- name: trime.zip
+ name: trime
59
path: app/build/outputs/apk/**/*.apk
60
# keep 90 days
61
retention-days: 90
62
+
63
+ - name: Upload Trime artifact (ARM64_V8A only)
64
+ uses: actions/upload-artifact@v3
65
+ with:
66
+ name: trime_arm64_v8a
67
+ path: app/build/outputs/apk/**/*arm64-v8a-debug.apk
68
+ # keep 90 days
69
+ retention-days: 90
70
71
+ - name: Upload jni artifact (librime_jni.so)
72
73
74
+ name: librime_jni
75
+ path: app/build/intermediates/stripped_native_libs/debug/out/lib/*
76
77
0 commit comments