Skip to content

Commit

Permalink
ci: Build and upload wheels
Browse files Browse the repository at this point in the history
  • Loading branch information
dnicolodi committed May 29, 2024
1 parent 7b346b1 commit 061ba66
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/wheels.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
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 }}

0 comments on commit 061ba66

Please sign in to comment.