Skip to content

Bump version to 0.1.1 #2

Bump version to 0.1.1

Bump version to 0.1.1 #2

Workflow file for this run

name: build
on:
push:
tags:
- 'v[0-9]*'
jobs:
wheels:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: python -m pip install build twine
- run: python -m build
- run: python -m twine upload dist/*
env:
TWINE_REPOSITORY: testpypi
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI }}