Skip to content

v0.5.0

v0.5.0 #6

Workflow file for this run

name: Publish
on:
workflow_dispatch:
release:
types:
- created
jobs:
publish:
runs-on: ubuntu-latest
permissions:
id-token: write
steps:
- name: Github actions init
uses: actions/checkout@v4
with:
# To force fetching tags
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.9"
- name: Install build dependencies
run: pip install build
- name: Build distribution
run: python -m build
- name: Publish
uses: pypa/[email protected]