File tree Expand file tree Collapse file tree 3 files changed +30
-0
lines changed Expand file tree Collapse file tree 3 files changed +30
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Upload zip
2
+ on : push
3
+ jobs :
4
+ build :
5
+ runs-on : ubuntu-latest
6
+ steps :
7
+ - uses : actions/checkout@v2
8
+ - name : Make release zip
9
+ run : |
10
+ wget https://github.com/topjohnwu/Magisk/raw/master/scripts/module_installer.sh -O META-INF/com/google/android/update-binary
11
+ zip -9 -x "*.git*" -r ../wifi_bonding.zip ./
12
+ sha256sum ../wifi_bonding.zip > ../wifi_bonding.zip.sha256sum
13
+ - name : Release
14
+ uses : softprops/action-gh-release@v1
15
+ if : startsWith(github.ref, 'refs/tags/')
16
+ with :
17
+ files : |
18
+ ../wifi_bonding.zip
19
+ ../wifi_bonding.zip.sha256sum
20
+ - uses : actions/upload-artifact@v1
21
+ with :
22
+ name : wifi_bonding
23
+ path : ./
Original file line number Diff line number Diff line change @@ -4,3 +4,4 @@ version=1.14
4
4
versionCode=15
5
5
author=simonsmh
6
6
description=Doubles your wi-fi bandwith by modifying WCNSS_qcom_cfg.ini.
7
+ updateJson=https://cdn.jsdelivr.net/gh/Magisk-Modules-Repo/wifi-bonding/version.json
Original file line number Diff line number Diff line change
1
+ {
2
+ "version" : " 1.14" ,
3
+ "versionCode" : 15 ,
4
+ "zipUrl" : " https://github.com/Magisk-Modules-Repo/wifi-bonding/releases/download/15/wifi_bonding.zip" ,
5
+ "changelog" : " https://cdn.jsdelivr.net/gh/Magisk-Modules-Repo/wifi-bonding/README.md"
6
+ }
You can’t perform that action at this time.
0 commit comments