We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4ff4311 commit 1614f59Copy full SHA for 1614f59
.github/workflows/release-tag.yml
@@ -0,0 +1,24 @@
1
+on:
2
+ push:
3
+ tags:
4
+ - 'v*' # Push events to matching v*, i.e. v1.0.0, v20.15.10
5
+
6
+name: Create Release
7
8
+jobs:
9
+ build:
10
+ permissions:
11
+ contents: write
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - name: Checkout
15
+ uses: actions/checkout@v4
16
+ - name: Build
17
+ run: make
18
+ - name: Release
19
+ uses: softprops/action-gh-release@v1
20
+ if: startsWith(github.ref, 'refs/tags/')
21
+ with:
22
+ files: biliplus.zip
23
+ body: |
24
+ Please refer to [CHANGELOG.md](https://github.com/0xlau/biliplus/blob/main/CHANGELOG.md) for details.
0 commit comments