Skip to content

chore(imagine): bump to 0.5.1 #2

chore(imagine): bump to 0.5.1

chore(imagine): bump to 0.5.1 #2

Workflow file for this run

---
name: CD
"on":
push:
tags:
- "[0-9].[0-9].[0-9]+"
permissions:
contents: write
jobs:
changelog:
name: add changelog
runs-on: ubuntu-latest
steps:
- name: checkout project
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9
with:
fetch-depth: 0
- name: get tag
shell: bash
run: |
echo "TAG=${GITHUB_REF:10}" >> "$GITHUB_ENV"
- name: refresh changelog
uses: orhun/git-cliff-action@0e74765f2f83d747a692ae478847f38d3587bb58
with:
config: cliff.toml
args: --verbose --tag ${{ env.TAG }}
env:
OUTPUT: CHANGELOG.md
- name: commit changelog
uses: EndBug/add-and-commit@1bad3abcf0d6ec49a5857d124b0bfb52dc7bb081
with:
message: "chore(CHANGELOG): add imagine ${{ env.TAG }} changes"
add: 'CHANGELOG.md'
new_branch: master