Skip to content

Update pyproject.toml #4

Update pyproject.toml

Update pyproject.toml #4

Workflow file for this run

name: Build and Publish to PyPI
on:
push:
branches:
- main # Change this to match your main branch name
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x' # Change this to your desired Python version
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install poetry
poetry install
- name: Build and publish to PyPI
uses: JRubics/[email protected]
with:
pypi_token: ${{ secrets.PYPI_TOKEN }}