Skip to content

Commit

Permalink
chore(workflow): add release-tag.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
haoziqaq committed Nov 2, 2023
1 parent 9b49bf3 commit 8e0e1fa
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/release-tag.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Create Release Tag

on:
push:
tags:
- 'v*'

jobs:
release-tag:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@master

- name: Create Release Tag
id: release_tag
uses: yyx990803/release-tag@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
body: |
更新内容请查看[CHANGELOG](https://github.com/varletjs/varlet/blob/dev/CHANGELOG.md)。
Please refer to [CHANGELOG](https://github.com/varletjs/varlet/blob/dev/CHANGELOG.md) for details.

0 comments on commit 8e0e1fa

Please sign in to comment.