v3.9.3 #21
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: release | |
on: | |
release: | |
types: [published] | |
jobs: | |
pypi: | |
name: Publish to PyPI registry | |
environment: release | |
runs-on: ubuntu-20.04 | |
env: | |
FORCE_COLOR: 1 | |
PY_COLORS: 1 | |
TOXENV: pkg | |
TOX_PARALLEL_NO_SPINNER: 1 | |
steps: | |
- name: Switch to using Python 3.9 by default | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.9 | |
- name: Install system dependencies | |
run: | | |
sudo apt remove -y docker-compose | |
sudo apt-get update -y | |
sudo apt-get --assume-yes --no-install-recommends install -y apt-transport-https curl libkrb5-dev | |
- name: Install build dependencies | |
run: python3 -m pip install --user tox | |
- name: Check out src from Git | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 # needed by setuptools-scm | |
- name: Build dists | |
run: python -m tox | |
- name: Publish to test.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.testpypi_password }} | |
repository_url: https://test.pypi.org/legacy/ | |
- 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 }} |