Skip to content

Updated README

Updated README #4

Workflow file for this run

name: Bump Version
on:
push:
branches:
- main # Adjust to your default branch
jobs:
bump-version:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Run version bump script
run: python bump_version.py
- name: Commit updated version
run: |
git config --global user.name "GitHub Action"
git config --global user.email "[email protected]"
git add setup.py
git commit -m "Bump version in setup.py [skip ci]" || echo "No changes to commit"
git push