We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 06ad0d8 commit 9f2d361Copy full SHA for 9f2d361
.github/workflows/release-tag.yml
@@ -0,0 +1,23 @@
1
+on:
2
+ push:
3
+ tags:
4
+ - 'v*' # Push events to matching 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@master
15
+ - name: Create Release for Tag
16
+ id: release_tag
17
+ uses: yyx990803/release-tag@master
18
+ env:
19
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
20
+ with:
21
+ tag_name: ${{ github.ref }}
22
+ body: |
23
+ Please refer to [CHANGELOG.md](https://github.com/vuejs/vitepress/blob/main/CHANGELOG.md) for details.
0 commit comments