We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d69478 commit 30eb892Copy full SHA for 30eb892
.github/workflows/build.yml
@@ -0,0 +1,23 @@
1
+name: Build
2
+
3
+on: [push, pull_request, workflow_dispatch]
4
5
+jobs:
6
+ Build:
7
+ name: Build Magisk Module
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - name: Checkout
11
+ uses: actions/checkout@v2
12
+ with:
13
+ fetch-depth: 0
14
+ - name: Prepare files
15
+ run: chmod +x compile.sh
16
+ - name: Compile
17
+ run: ./compile.sh
18
+ - name: Upload Result
19
+ uses: actions/upload-artifact@v2
20
21
+ name: ViPER4AndroidRepackaged.zip
22
+ path: ViPER4AndroidFX-*.zip
23
+ if-no-files-found: error
0 commit comments