Skip to content

Commit 30eb892

Browse files
add github actions workflow
automation ftw
1 parent 3d69478 commit 30eb892

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/build.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
with:
21+
name: ViPER4AndroidRepackaged.zip
22+
path: ViPER4AndroidFX-*.zip
23+
if-no-files-found: error

0 commit comments

Comments
 (0)