Skip to content

fix dtype bugs (#72) #15

fix dtype bugs (#72)

fix dtype bugs (#72) #15

Workflow file for this run

name: release
on:
push:
tags:
- 'v**'
workflow_dispatch:
inputs:
branch:
required: true
default: 'main'
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build-and-publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install build
run: pip install build
- name: Build dist
run: python -m build
- name: Publish to PyPI
run: |
pip install twine
twine upload dist/* --skip-existing -p ${{ secrets.PYPI_API_TOKEN }}