Skip to content

Bump version to 0.4.31 #60

Bump version to 0.4.31

Bump version to 0.4.31 #60

Workflow file for this run

name: Bump version and Tag
on:
push:
branches:
- main
jobs:
version-bump:
if: github.actor != 'some-ci'
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
token: ${{ secrets.SOME_CI_PAT }}
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install Dependencies
run: |
python -m pip install -U pip
pip install -r requirements-dev.txt
- name: Bump version
run: python tools/bump-version.py
- name: Push changes
env:
GITHUB_TOKEN: ${{ secrets.SOME_CI_PAT }}
run: |
git config --global user.email "[email protected]"
git config --global user.name "Some CI"
version=$(python tools/get-version.py)
git add pyproject.toml fixcompliance/__init__.py
git commit -m "Bump version to $version"
git tag -a "$version" -m "$version"
git push && git push --tags