Skip to content

v0.0.6

v0.0.6 #10

Workflow file for this run

name: publish-package
on:
release:
types: [published]
jobs:
pypi:
runs-on: ubuntu-latest
environment:
name: pypi
url: https://pypi.org/p/${{ github.event.repository.name }}
permissions:
contents: read # add default back in
id-token: write
steps:
- name: Check out repository
uses: actions/[email protected]
- name: Set up Python 3.x
uses: actions/[email protected]
with:
python-version: "3.x"
- name: Install Poetry
uses: snok/[email protected]
- name: Build the package
run: poetry build -vvv
- name: Publish package distributions to PyPI
uses: pypa/[email protected]