Skip to content

Final tweaks for 5.3 (#827) #19

Final tweaks for 5.3 (#827)

Final tweaks for 5.3 (#827) #19

Workflow file for this run

on:
push:
tags:
- "[0-9]+.[0-9]+*"
name: Release
jobs:
sdist:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.9"
- name: update pip
run: |
python -m pip install -U pip
- name: Create dist
run: |
pip install tox
tox -e makedist
- name: Publish
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{secrets.PYPI_API_TOKEN}}