diff --git a/.github/workflows/release-tag.yml b/.github/workflows/release-tag.yml new file mode 100644 index 00000000..2287d080 --- /dev/null +++ b/.github/workflows/release-tag.yml @@ -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.