Skip to content

Release v0.6.0

Release v0.6.0 #5

Workflow file for this run

name: Publish on PyPI
on:
push:
tags:
- 'v*'
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install --upgrade setuptools wheel
python setup.py sdist bdist_wheel
- name: pypi-publish
uses: pypa/[email protected]
with:
user: __token__
password: ${{ secrets.PYPI_TOKEN }}
- name: Upload packages
uses: actions/upload-artifact@v3
with:
name: dist
path: dist