Skip to content

v9.0.0

v9.0.0 #3

Workflow file for this run

---
name: release
on:
release:
types: [published]
jobs:
pypi:
name: Publish to PyPI registry
environment: release
runs-on: ubuntu-22.04
env:
FORCE_COLOR: 1
PY_COLORS: 1
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0 # needed by setuptools-scm
- name: Switch to using Python 3.9 by default
uses: actions/setup-python@v4
with:
python-version: "3.9"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox
- name: Build dists
run: |
tox -e packaging
- name: Publish to pypi.org
if: >- # "create" workflows run separately from "push" & "pull_request"
github.event_name == 'release'
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.pypi_password }}