Skip to content

Fix #540 with v1.4.1 preparation with 1.3.1 baseline #8

Fix #540 with v1.4.1 preparation with 1.3.1 baseline

Fix #540 with v1.4.1 preparation with 1.3.1 baseline #8

Workflow file for this run

name: Publish Tags on PyPi when GitHub creates a release
on:
push:
tags:
- 'v**'
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install upload dependencies
run: |
python -m pip install --upgrade pip setuptools wheel twine
- name: Build and publish
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
run: |
python setup.py sdist bdist_wheel
twine upload dist/*