Skip to content

2.9.0

2.9.0 #20

Workflow file for this run

name: Publish
on:
release:
types: [published]
env:
ANSICON: 1
FORCE_COLOR: 1
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: πŸ“₯ Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: "✨ Install Poetry"
run: |
pipx install poetry
pipx inject poetry poetry-dynamic-versioning
- name: πŸ“¦ Build package
run: poetry build --ansi
- name: πŸ“€ Publish package
run: poetry publish --ansi
env:
POETRY_PYPI_TOKEN_PYPI: ${{ secrets.PYPI_API_TOKEN }}