Skip to content

Update version to 1.4.0 (#43) #16

Update version to 1.4.0 (#43)

Update version to 1.4.0 (#43) #16

Workflow file for this run

name: Deploy to PyPI
on:
push:
tags:
- 'v*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build
run: |
pip install -r requirements/requirements-dev.txt
pip install -U twine build packaging
python -m build
- name: Publish a Python distribution to PyPI
uses: pypa/[email protected]
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}