Skip to content

chore: update version to 0.1.1 in pyproject.toml and _version.py #5

chore: update version to 0.1.1 in pyproject.toml and _version.py

chore: update version to 0.1.1 in pyproject.toml and _version.py #5

name: Upload python package
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.10'
- name: Install dependencies
run: |
pip install poetry
- name: Config poetry
run: |
poetry config pypi-token.pypi ${{ secrets.PYPI_API_TOKEN }}
- name: Build and publish
run: |
poetry publish --build