Update setup.py 0.45.0 #109
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }} |