Skip to content

updated chglog config #1

updated chglog config

updated chglog config #1

Workflow file for this run

name: GitHub Release
on:
push:
tags: [ v* ]
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: read
name: Generate Release
steps:
- name: checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Generate Changelog
uses: pfandie/[email protected]
id: changelog
with:
config_path: .chglog
next_tag: ${{ github.ref_name }}
- name: Create Release
uses: ncipollo/[email protected]
with:
makeLatest: true
body: ${{ steps.changelog.outputs.changelog }}
name: "Release ${{ github.ref_name }}"