Skip to content

Bump version 3.0.0 --> 3.0.1 #6

Bump version 3.0.0 --> 3.0.1

Bump version 3.0.0 --> 3.0.1 #6

Workflow file for this run

name: Publish to PyPI
on:
push:
tags:
- 'v*.*.*'
jobs:
build-and-publish:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup
uses: './.github/actions/cicd-setup'
- name: Build
run: python -m build
- name: Publish
run: python -m twine upload dist/* --username __token__ --password ${{ secrets.PYPI_API_TOKEN }}