Skip to content

feat: version up to v0.2.4 #7

feat: version up to v0.2.4

feat: version up to v0.2.4 #7

Workflow file for this run

name: Publish PyPI
on:
release:
types: [published]
push:
tags:
- '*'
jobs:
publish:
name: publish
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Rye
run: |
curl -sSf https://rye.astral.sh/get | bash
echo "$HOME/.rye/shims" >> $GITHUB_PATH
env:
RYE_VERSION: 0.34.0
RYE_INSTALL_OPTION: "--yes"
- name: Publish to PyPI
run: |
bash ./bin/publish-pypi
env:
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}