Skip to content

v2.1.2

v2.1.2 #18

Workflow file for this run

name: Publish
on:
release:
types: [published]
permissions:
contents: read
jobs:
deploy:
runs-on: ubuntu-latest
environment: publishing
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.9.x
uses: actions/setup-python@v3
with:
python-version: '3.9.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install build
- name: Build package
run: python -m build
- name: Publish package
uses: pypa/[email protected]
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}