Skip to content

chore: release v0.16.0 #35

chore: release v0.16.0

chore: release v0.16.0 #35

Workflow file for this run

# This workflow will upload a Python Package using Twine when a release is created
# For more information see: https://help.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions#publishing-to-package-registries
name: Release to PyPI
on:
push:
tags:
- v*
permissions:
contents: read
jobs:
build:
uses: ./.github/workflows/build.yml
publish:
runs-on: ubuntu-latest
needs: build
steps:
- name: Download release
uses: actions/download-artifact@v3
with:
name: release
- name: Publish package
uses: pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}