Skip to content

chore: bump rust-build.action to 1.4.4 #36

chore: bump rust-build.action to 1.4.4

chore: bump rust-build.action to 1.4.4 #36

Workflow file for this run

name: Changelog Generation
on: [push, pull_request]
jobs:
changelog:
name: Generate changelog
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Generate a changelog
uses: orhun/git-cliff-action@v2
id: git-cliff
with:
config: cliff.toml
args: --verbose
env:
OUTPUT: CHANGELOG.md
- name: Print the changelog
run: cat "${{ steps.git-cliff.outputs.changelog }}"