Skip to content

Bump version

Bump version #8

Workflow file for this run

name: deploy
on:
push:
tags:
- "v*"
jobs:
build-n-publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3
uses: actions/setup-python@v1
with:
python-version: 3
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade poetry
python -m poetry install
- name: Build Package
run: |
python -m poetry build
- name: Publish distribution to PyPI
uses: pypa/gh-action-pypi-publish@master
with:
user: __token__
password: ${{ secrets.PYPI_TOKEN }}