Skip to content

chore: release 0.1.19 -> 0.1.20 #2

chore: release 0.1.19 -> 0.1.20

chore: release 0.1.19 -> 0.1.20 #2

Workflow file for this run

name: release
on:
workflow_dispatch:
push:
tags:
- v*
permissions:
contents: write
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: '0'
- name: Generate Changelog
run: |
curl -sSfL https://github.com/convco/convco/releases/latest/download/convco-ubuntu.zip | zcat > convco
chmod +x convco
./convco changelog v$(./convco version) -m 1 > ${{ github.workspace }}-CHANGELOG.txt
rm convco
- name: Release
uses: softprops/action-gh-release@v2
with:
body_path: ${{ github.workspace }}-CHANGELOG.txt