Skip to content

Version 3.4.2

Version 3.4.2 #13

Workflow file for this run

name: Publish
on:
push:
tags:
- 'v*'
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: '3.11'
- name: Install
run: python -m pip install build setuptools twine wheel
- name: Build
run: |
python -m build
python -m twine check dist/*
- name: Publish
run: python -m twine upload dist/*
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}