123456789101112131415161718192021222324 |
- 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
- with:
- fetch-depth: 0
- - 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/vue-vben-admin/blob/main/CHANGELOG.md) for details.
|