Skip to content

Update pyproject.toml (#57) #6

Update pyproject.toml (#57)

Update pyproject.toml (#57) #6

Workflow file for this run

# Build the package and publish it to PyPI after tests pass.
name: Publish to PyPI
on:
push:
branches:
- main
tags:
- "*"
jobs:
publish:
name: publish
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@v3
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: 3.11
- name: Build package
run: |
python -m pip install -U pip build
python -m build
- name: Publish
uses: pypa/[email protected]
with:
user: __token__
password: ${{ secrets.DPLPY_PYPI }}