Skip to content

chore: Bump to 0.3.0 #5

chore: Bump to 0.3.0

chore: Bump to 0.3.0 #5

Workflow file for this run

name: Publish CI
on:
push:
tags:
- "*.*.*"
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: 3.8
- name: Install Poetry
run: pip install poetry==1.7
- name: Install Dependencies
run: poetry install --with=dev
- name: Build Library
run: make build
- name: Publish to PyPI
run: |
poetry config pypi-token.pypi ${{ secrets.PYPI_TOKEN }}
poetry publish -n