docs(changelog): add 3.2.1 (#1902) #5
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: Publish | |
on: | |
push: | |
tags: | |
- '[1-9]+.[0-9]+.[0-9]+' | |
env: | |
PIP_DISABLE_PIP_VERSION_CHECK: '1' | |
PY_COLORS: '1' | |
jobs: | |
pypi: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.12' | |
- name: Install build tools | |
run: pip install tox | |
- name: Verify package version is same as Git tag | |
run: tox run -qe ensure_version_matches -- $GIT_TAG | |
env: | |
GIT_TAG: ${{ github.ref_name }} | |
- name: Build package and upload to PyPI | |
run: tox run -e package -- upload | |
env: | |
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }} | |
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }} |