Skip to content

Update workflow generate stage #15

Update workflow generate stage

Update workflow generate stage #15

Workflow file for this run

name: Run Python Script
on:
push:
jobs:
run-script:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install poetry
run: pipx install poetry
- uses: actions/setup-python@v5
with:
python-version: "3.11"
cache: "poetry"
- run: poetry install
- run: |
poetry run python script.py
git add -A
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
git commit -m 'Deploy'
git push