Skip to content

test: add verbose mode to the test helper #4

test: add verbose mode to the test helper

test: add verbose mode to the test helper #4

Workflow file for this run

name: Release
on:
push:
tags:
- "v*"
jobs:
make_release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Generate changelog
run: |
pip3 install setuptools
pip3 install pystache gitchangelog
CURRENT_TAG=$(git describe --tags --abbrev=0 HEAD)
PREV_TAG=$(git describe --tags --abbrev=0 "${CURRENT_TAG}~1")
gitchangelog ${PREV_TAG}..${CURRENT_TAG} > ${{ github.workspace }}-CHANGELOG.txt
- name: Release
uses: softprops/action-gh-release@v2
with:
body_path: ${{ github.workspace }}-CHANGELOG.txt
draft: true