Skip to content

Update bump_poetry.yml #3

Update bump_poetry.yml

Update bump_poetry.yml #3

Workflow file for this run

name: Update Python Poetry packages
on: push
jobs:
update-packages:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: 3.11
- name: Run image
uses: abatilo/actions-poetry@v2
with:
poetry-version: 1.4.2
- name: bump up patch version
run: |
git config user.name github-actions
git config user.email github-actions@github.com
poetry version patch
git add pyproject.toml
git commit -m "bump up patch version from workflow"
git push