Skip to content

bump: 0.56.0 (#1640) #160

bump: 0.56.0 (#1640)

bump: 0.56.0 (#1640) #160

Workflow file for this run

name: Release(GitHub)
on:
push:
tags:
- 'v*.*.*'
jobs:
github:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v6.0.2
with:
fetch-depth: 0
fetch-tags: true
- name: Set up git-cliff
uses: kenji-miyake/setup-git-cliff@v2.0.1
- run: git cliff --current -o changelog.md
env:
GITHUB_TOKEN: ${{ github.token }}
- name: Upload GitHub Release
run: gh release create "${GITHUB_REF}" -F changelog.md
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}