Skip to content

bump: version 2.1.0 → 2.1.1 #6

bump: version 2.1.0 → 2.1.1

bump: version 2.1.0 → 2.1.1 #6

Workflow file for this run

name: release
on:
push:
tags:
- '*' # Triggers only when you push a tag starting with 'v'
permissions:
contents: write
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0 # Essential for generating full changelogs
- name: Create GitHub Release
uses: softprops/action-gh-release@v2
with:
generate_release_notes: true # Auto-generates notes from Conventional Commits
token: ${{ secrets.GITHUB_TOKEN }}