We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bb71361 commit aedb8f3Copy full SHA for aedb8f3
1 file changed
.github/workflows/build.yaml
@@ -32,6 +32,13 @@ jobs:
32
mv module/bin/kptools-android module/bin/kptools
33
mv module/bin/kpimg-linux module/bin/kpimg
34
35
+ - name: Download magiskboot binary
36
+ run: |
37
+ TAG=$(gh release list -R topjohnwu/Magisk -L 1 --json tagName --jq '.[0].tagName')
38
+ gh release download "$TAG" -R topjohnwu/Magisk -p "Magisk*.apk" -O magisk.apk
39
+ unzip -p magisk.apk 'lib/arm64-v8a/libmagiskboot.so' > module/bin/magiskboot
40
+ rm magisk.apk
41
+
42
- name: build webroot
43
run: |
44
cd webui
0 commit comments