We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9e451dd commit 40d4429Copy full SHA for 40d4429
.github/workflows/create-relaease.yml
@@ -0,0 +1,23 @@
1
+on:
2
+ push:
3
+ tags:
4
+ - 'v*' # Push events to matching tags starts with 'v', i.e. v1.0, v20.15.10
5
+
6
+name: Create Release
7
8
+jobs:
9
+ build:
10
+ name: Create Release
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - name: Checkout code
14
+ uses: actions/checkout@v3
15
+ - name: Create Release for Tag
16
+ id: release_tag
17
+ uses: yyx990803/release-tag@master # https://github.com/yyx990803/release-tag
18
+ env:
19
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
20
+ with:
21
+ tag_name: ${{ github.ref }}
22
+ body: |
23
+ 更新内容请参见 [CHANGELOG](https://github.com/ScoutYin/ly-tab/blob/master/CHANGELOG_CN.md)。
0 commit comments