You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
559 B
24 lines
559 B
name: Create Release
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- v*
|
|
|
|
jobs:
|
|
build:
|
|
name: Create Release
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@master
|
|
|
|
- name: Create Release for Tag
|
|
id: release_tag
|
|
uses: yyx990803/release-tag@master
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.OPER_TOKEN }}
|
|
with:
|
|
tag_name: ${{ github.ref }}
|
|
body: |
|
|
Please refer to [CHANGELOG.md](https://github.com/anncwb/vue-vben-admin/blob/main/CHANGELOG.md) for details.
|
|
|