Skip to content

ci: add CI, release workflow, Makefile, and cliff.toml #1

ci: add CI, release workflow, Makefile, and cliff.toml

ci: add CI, release workflow, Makefile, and cliff.toml #1

Workflow file for this run

name: Release
on:
push:
tags:
- "v*"
jobs:
changelog:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Generate changelog
uses: orhun/git-cliff-action@v4
with:
config: cliff.toml
args: --latest --strip header
env:
OUTPUT: CHANGELOG.md
- name: Create release
uses: softprops/action-gh-release@v2
with:
body_path: CHANGELOG.md
token: ${{ secrets.GITHUB_TOKEN }}