Skip to content
This repository has been archived by the owner on Feb 12, 2024. It is now read-only.

fix readme (#94)

fix readme (#94) #2

Workflow file for this run

name: Publish to PyPI
on:
push:
tags:
- "*"
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install poetry
run: pip install poetry
- name: Build and publish
run: |
poetry build
poetry publish --username __token__ --password ${{ secrets.PYPI_API_TOKEN }}