Skip to content

Fix syntax error in pyproject.toml #54

Fix syntax error in pyproject.toml

Fix syntax error in pyproject.toml #54

Workflow file for this run

on:
push:
# Sequence of patterns matched against refs/tags
tags:
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10
name: Publish
jobs:
publish:
name: Upload to PyPI
environment: Publish
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.10"
- uses: abatilo/actions-poetry@v2
- name: build
run: poetry build
- name: publish
run: poetry publish --username __token__ --password ${{ secrets.PYPI_TOKEN }}