1
0
mirror of https://github.com/nikoksr/notify.git synced 2025-04-07 07:10:09 +02:00

ci(docs): add workflow for git-cliff to auto-gen changelogs

This commit is contained in:
Niko Köser 2022-02-07 07:42:01 +01:00
parent 4807f82797
commit 7296c8b46c
No known key found for this signature in database
GPG Key ID: F3F28C118DAA6375

48
.github/workflows/docs.yml vendored Normal file
View File

@ -0,0 +1,48 @@
name: Continuous Deployment
on:
push:
tags:
- "v*.*.*"
jobs:
generate-changelog:
name: Generate changelog
runs-on: ubuntu-20.04
outputs:
release_body: ${{ steps.release.outputs.release_body }}
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Generate the full changelog
uses: orhun/git-cliff-action@v1
id: git-cliff-full
with:
# config: .cliff.toml # Doesn't seem to work
args: -vv --config .config.toml
env:
OUTPUT: CHANGELOG.md
- name: Generate latest changelog
uses: orhun/git-cliff-action@v1
id: git-cliff-latest
with:
# config: .cliff.toml # Doesn't seem to work
args: -vv --latest --strip header --config .cliff.toml
env:
OUTPUT: LATEST-CHANGES.md
- name: Touch new file
id: touch
shell: bash
run: touch teeeeeeest.txt
- name: Set the release body
id: release
shell: bash
run: |
r=$(cat ${{ steps.git-cliff-latest.outputs.changelog }})
r="$(printf "$r" | tail -n +3)"
r="${r//'%'/'%25'}"
r="${r//$'\n'/'%0A'}"
r="${r//$'\r'/'%0D'}"
echo "::set-output name=release_body::$r"