Skip to content

chore: v2.0.5

chore: v2.0.5 #14

Workflow file for this run

name: Changelogs
on:
push:
tags: "*"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Generate Change Log
id: generate_log
run: |
curl -sSL https://goblin.run/github.com/barelyhuman/commitlog | sh
commitlog g > CHANGELOG.md
- uses: ncipollo/release-action@v1
with:
bodyFile: "CHANGELOG.md"
token: ${{ secrets.GH_TOKEN }}