Skip to content

VERSION bump

VERSION bump #12

Workflow file for this run

name: Publish to PyPI
on:
push:
tags:
- "*"
jobs:
tests:
uses: ./.github/workflows/test.yaml
publish:
name: publish
needs: [tests]
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: "3.10"
- 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.PYPI_KEY }}