We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8164e45 commit 969e611Copy full SHA for 969e611
1 file changed
.github/workflows/build.yml
@@ -2,6 +2,9 @@ name: Build Magisk Module
2
3
on:
4
workflow_dispatch:
5
+ push:
6
+ tags:
7
+ - 'v*'
8
9
jobs:
10
build:
@@ -28,3 +31,9 @@ jobs:
28
31
with:
29
32
name: AlwaysTrustUserCerts
30
33
path: AlwaysTrustUserCerts.zip
34
+
35
+ - name: Create Release
36
+ uses: softprops/action-gh-release@v1
37
+ if: startsWith(github.ref, 'refs/tags/')
38
+ with:
39
+ files: AlwaysTrustUserCerts.zip
0 commit comments