Skip to content

bump to v29.0.0rc18 (#1) #1

bump to v29.0.0rc18 (#1)

bump to v29.0.0rc18 (#1) #1

Workflow file for this run

name: Release
on:
push:
tags:
- 'v*'
env:
PYTHON_VERSION: "3.13"
jobs:
publish:
name: publish-to-pypi-${{ matrix.os }}-${{ matrix.arch }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
include:
- os: windows-latest
- os: ubuntu-latest
- os: macos-latest
steps:
- uses: actions/checkout@v4
- uses: taiki-e/install-action@v2
with:
tool: cargo-make
- uses: actions/setup-python@v5
with:
python-version: ${{ env.PYTHON_VERSION }}
- uses: astral-sh/setup-uv@v3
- run: |
cargo make build
uv tool install twine
twine upload dist/* -u ${{ secrets.TWINE_USERNAME }} -p ${{ secrets.TWINE_PASS }} --non-interactive --skip-existing