Skip to content

bump: 0.47.1 (#1486) #148

bump: 0.47.1 (#1486)

bump: 0.47.1 (#1486) #148

Workflow file for this run

name: Release(GitHub)
on:
push:
tags:
- 'v*.*.*'
jobs:
github:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
fetch-tags: true
- name: Set up git-cliff
uses: kenji-miyake/setup-git-cliff@v2
- 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 }}