Skip to content

bump version → 0.5.0 #8

bump version → 0.5.0

bump version → 0.5.0 #8

Workflow file for this run

name: Publish
on:
push:
tags:
- "v*.*.*"
jobs:
publish_pypi:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Build
run: make build
- name: Publish
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
run: make publish