Skip to content

Commit 28273c6

Browse files
authored
add action
1 parent 5072c1f commit 28273c6

File tree

3 files changed

+30
-0
lines changed

3 files changed

+30
-0
lines changed

.github/workflows/main.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
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: ./

module.prop

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@ version=1.14
44
versionCode=15
55
author=simonsmh
66
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

version.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
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+
}

0 commit comments

Comments
 (0)