File tree 5 files changed +129
-128
lines changed
5 files changed +129
-128
lines changed Original file line number Diff line number Diff line change 21
21
- name : Build APK
22
22
run : cd demo_apk && bash ./gradlew assembleDebug --stacktrace
23
23
- name : Upload APK
24
- uses : actions/upload-artifact@v1
24
+ uses : actions/upload-artifact@v3
25
25
with :
26
- name : demoapk
26
+ name : demo.apk
27
27
path : demo_apk/app/build/outputs/apk/debug/app-debug.apk
28
28
test :
29
29
name : Test JNI extraction
@@ -32,13 +32,13 @@ jobs:
32
32
steps :
33
33
- uses : actions/checkout@v4
34
34
- name : Download APK from build
35
- uses : actions/download-artifact@v1
35
+ uses : actions/download-artifact@v4
36
36
with :
37
- name : demoapk
37
+ pattern : demo.apk
38
38
- name : preinstall
39
39
run : pip3 install -r requirements.txt
40
40
- name : test
41
- run : ./extract_jni.py demoapk/app-debug .apk
41
+ run : ./extract_jni.py demo .apk
42
42
43
43
release :
44
44
name : release APK
47
47
runs-on : ubuntu-latest
48
48
steps :
49
49
- name : Download APK from build
50
- uses : actions/download-artifact@v1
50
+ uses : actions/download-artifact@v4
51
51
with :
52
- name : demoapk
52
+ pattern : demo.apk
53
53
- name : Create Release
54
54
id : create_release
55
55
uses : actions/create-release@v1
68
68
asset_path : demoapk/app-debug.apk
69
69
asset_name : DemoJNI-debug.apk
70
70
asset_content_type : application/zip
71
-
Original file line number Diff line number Diff line change 1
1
* .swp
2
2
.DS_Store
3
3
assets /
4
+ .venv /
You can’t perform that action at this time.
0 commit comments