This repository has been archived by the owner on Mar 28, 2024. It is now read-only.
Delete outdated file #6
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: Bump Version Number | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
run: | |
name: Bump Version Number | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: [3.9] | |
steps: | |
- name: Checkout current branch | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v1 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- uses: snok/install-poetry@v1.1.1 | |
with: | |
virtualenvs-create: true | |
- name: Bump version | |
run: poetry version minor | |
- name: Commit changes | |
uses: EndBug/add-and-commit@v7 | |
with: | |
message: Bump version number | |
committer_name: GitHub Actions | |
committer_email: actions@github.com | |
add: 'pyproject.toml' |