Skip to content

Commit

Permalink
add action
Browse files Browse the repository at this point in the history
  • Loading branch information
simonsmh authored Nov 14, 2022
1 parent 5072c1f commit 28273c6
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Upload zip
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Make release zip
run: |
wget https://github.com/topjohnwu/Magisk/raw/master/scripts/module_installer.sh -O META-INF/com/google/android/update-binary
zip -9 -x "*.git*" -r ../wifi_bonding.zip ./
sha256sum ../wifi_bonding.zip > ../wifi_bonding.zip.sha256sum
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: |
../wifi_bonding.zip
../wifi_bonding.zip.sha256sum
- uses: actions/upload-artifact@v1
with:
name: wifi_bonding
path: ./
1 change: 1 addition & 0 deletions module.prop
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ version=1.14
versionCode=15
author=simonsmh
description=Doubles your wi-fi bandwith by modifying WCNSS_qcom_cfg.ini.
updateJson=https://cdn.jsdelivr.net/gh/Magisk-Modules-Repo/wifi-bonding/version.json
6 changes: 6 additions & 0 deletions version.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"version": "1.14",
"versionCode": 15,
"zipUrl": "https://github.com/Magisk-Modules-Repo/wifi-bonding/releases/download/15/wifi_bonding.zip",
"changelog": "https://cdn.jsdelivr.net/gh/Magisk-Modules-Repo/wifi-bonding/README.md"
}

0 comments on commit 28273c6

Please sign in to comment.