Skip to content

Commit 3623ea7

Browse files
authored
chore(CI): automatically generate changelog via GitHub (vbenjs#3778)
1 parent 49c4dc6 commit 3623ea7

File tree

2 files changed

+22
-24
lines changed

2 files changed

+22
-24
lines changed

.github/workflows/release-tag.yml

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Create Release Tag
2+
3+
on:
4+
push:
5+
tags:
6+
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10
7+
8+
jobs:
9+
build:
10+
name: Create Release
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Checkout code
14+
uses: actions/checkout@v4
15+
16+
- name: Create Release for Tag
17+
id: release_tag
18+
uses: ncipollo/release-action@v1
19+
with:
20+
generateReleaseNotes: 'true'
21+
body: |
22+
> Please refer to [CHANGELOG.md](https://github.com/anncwb/vue-vben-admin/blob/main/CHANGELOG.md) for details.

.github/workflows/release.yml

-24
This file was deleted.

0 commit comments

Comments
 (0)