Skip to content

Bump version to 1.0.39 and increase default timeout to 3600 seconds #94

Bump version to 1.0.39 and increase default timeout to 3600 seconds

Bump version to 1.0.39 and increase default timeout to 3600 seconds #94

Workflow file for this run

name: Upload Python Package
on:
push:
branches:
- master
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.8"
- name: Install poetry
run: pipx install poetry
- name: Running poetry install
run: poetry install
- name: Build and publish
env:
POETRY_PYPI_TOKEN_PYPI: ${{ secrets.PYPI_PASSWORD }}
run: poetry publish --build