Skip to content

chore: added manual triggering #5

chore: added manual triggering

chore: added manual triggering #5

Workflow file for this run

name: release
on:
workflow_dispatch:
push:
tags:
- "v*.*.*"
jobs:
github_release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
- name: Install git-changelog
run: pip install git-changelog
- name: Prepare release notes
run: git-changelog --release-notes > release-notes.md
- name: Create GitHub release
uses: softprops/action-gh-release@v2
with:
body_path: release-notes.md
token: ${{ secrets.RELEASE_GITHUB_TOKEN }}