Skip to content

Commit 969e611

Browse files
committed
ci: add automatic release creation on tag push
1 parent 8164e45 commit 969e611

1 file changed

Lines changed: 9 additions & 0 deletions

File tree

.github/workflows/build.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@ name: Build Magisk Module
22

33
on:
44
workflow_dispatch:
5+
push:
6+
tags:
7+
- 'v*'
58

69
jobs:
710
build:
@@ -28,3 +31,9 @@ jobs:
2831
with:
2932
name: AlwaysTrustUserCerts
3033
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

Comments
 (0)