Skip to content

Release v0.45.0

Release v0.45.0 #111

Workflow file for this run

name: Update Changelog
on:
push:
branches:
- master
jobs:
update-changelog:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Get the current version
id: current-version
run: echo "version=$(python setup.py --version)" >> $GITHUB_ENV
shell: bash
- name: Run Update Changelog Action
uses: MusfiqDehan/[email protected]
with:
version: ${{ env.version }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}