Skip to content

Bump version to 3.0.0 #8

Bump version to 3.0.0

Bump version to 3.0.0 #8

Workflow file for this run

name: Upload Python Package
on:
push:
tags:
- "v*" # Push events to matching v*, i.e. v1.0, v20.15.10
permissions:
contents: read
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install the latest version of rye
uses: eifinger/[email protected]
- name: Set up Python
uses: actions/[email protected]
with:
python-version: "3.x"
- name: Build package
run: rye build
- name: Publish package
run: rye publish --token "${{ secrets.PYPI_API_TOKEN }}" --yes