Skip to content

Commit

Permalink
chore: add 'create release' github action
Browse files Browse the repository at this point in the history
  • Loading branch information
ScoutYin committed Apr 30, 2022
1 parent 9e451dd commit 40d4429
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/create-relaease.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
on:
push:
tags:
- 'v*' # Push events to matching tags starts with 'v', i.e. v1.0, v20.15.10

name: Create Release

jobs:
build:
name: Create Release
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Create Release for Tag
id: release_tag
uses: yyx990803/release-tag@master # https://github.com/yyx990803/release-tag
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
body: |
更新内容请参见 [CHANGELOG](https://github.com/ScoutYin/ly-tab/blob/master/CHANGELOG_CN.md)。

0 comments on commit 40d4429

Please sign in to comment.