Skip to content

Update Stable to 10.19.04 #8

Update Stable to 10.19.04

Update Stable to 10.19.04 #8

Workflow file for this run

name: Publish Python wheel to PyPI
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install build dependencies
run: python -m pip install --upgrade pip setuptools wheel poetry==1.5.1
- name: Build distributions
run: poetry build
- name: Publish to PyPI
env:
POETRY_HTTP_BASIC_PYPI_USERNAME: ${{ secrets.PYPI_USERNAME }}
POETRY_HTTP_BASIC_PYPI_PASSWORD: ${{ secrets.PYPI_TOKEN }}
run: poetry publish