Merge pull request #135 from Ouranosinc/pyproject #1
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
# This workflow requires a personal access token named `BUMPVERSION_TOKEN` with the following privileges: | |
# - repo | |
# - workflow | |
name: "Bump Patch Version" | |
on: | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- .cruft.json | |
- .editorconfig | |
- .github/**.yml | |
- .gitignore | |
- .pre-commit-config.yaml | |
- .yamllint.yaml | |
- .zenodo.json | |
- AUTHORS.rst | |
- CHANGES.rst | |
- CONTRIBUTING.rst | |
- Makefile | |
- .readthedocs.yml | |
- docs/*.py | |
- docs/*.rst | |
- environment-docs.yml | |
- environment-dev.yml | |
- pyproject.toml | |
- tests/**.py | |
- tox.ini | |
- figanos/__init__.py | |
workflow_dispatch: | |
jobs: | |
bump_patch_version: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
persist-credentials: false | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3.x" | |
- name: Config Commit Bot | |
run: | | |
git config --local user.email "bumpversion[bot]@ouranos.ca" | |
git config --local user.name "bumpversion[bot]" | |
- name: Current Version | |
run: echo "current_version=$(grep -E '__version__' figanos/__init__.py | cut -d ' ' -f3)" | |
- name: Bump Patch Version | |
run: | | |
pip install bump-my-version | |
echo "Bumping version" | |
bump-my-version bump --tag patch | |
echo "new_version=$(grep -E '__version__' figanos/__init__.py | cut -d ' ' -f3)" | |
- name: Push Changes | |
uses: ad-m/github-push-action@master | |
with: | |
force: false | |
github_token: ${{ secrets.BUMPVERSION_TOKEN }} | |
branch: ${{ github.ref }} |