Skip to content

Commit 1614f59

Browse files
authored
Create release-tag.yml
1 parent 4ff4311 commit 1614f59

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/release-tag.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)