Skip to content

0.26.0

0.26.0 #37

Workflow file for this run

name: Release
on:
push:
tags: ["*"]
jobs:
release:
runs-on: ubuntu-latest
name: "Publish to PyPI"
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
with:
python-version: "3.10"
- name: Install pypa/build
run: python -m pip install build --user
- name: Build a package
run: python -m build
- name: Publish distribution 📦 to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PYPI_API_TOKEN }}