Skip to content
This repository has been archived by the owner on Aug 28, 2024. It is now read-only.

Commit

Permalink
feat(ci): add release-tag (#347)
Browse files Browse the repository at this point in the history
  • Loading branch information
wangjue666 authored Apr 24, 2024
1 parent b77b5ca commit 4df27ec
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/release-tag.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Create Release Tag

on:
push:
tags:
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10

jobs:
build:
name: Create Release
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Create Release for Tag
id: release_tag
uses: ncipollo/release-action@v1
with:
generateReleaseNotes: 'true'
body: |
> Please refer to [CHANGELOG.md](https://github.com/vbenjs/vben3/blob/master/CHANGELOG.md) for details.

0 comments on commit 4df27ec

Please sign in to comment.