Skip to content

Commit

Permalink
testing
Browse files Browse the repository at this point in the history
  • Loading branch information
dnicolodi committed Nov 4, 2024
1 parent 932fd35 commit d866c0f
Showing 1 changed file with 16 additions and 15 deletions.
31 changes: 16 additions & 15 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ on:
push:
tags:
- 'v[0-9]*'
pull_request:
workflow_dispatch:

jobs:
Expand Down Expand Up @@ -65,18 +66,18 @@ jobs:
name: sdist
path: dist/*.tar.gz

upload:
needs:
- wheels
- sdist
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v4
with:
merge-multiple: true
path: dist
- run: python -m pip install twine
- run: python -m twine upload dist/*
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI }}
# upload:
# needs:
# - wheels
# - sdist
# runs-on: ubuntu-latest
# steps:
# - uses: actions/download-artifact@v4
# with:
# merge-multiple: true
# path: dist
# - run: python -m pip install twine
# - run: python -m twine upload dist/*
# env:
# TWINE_USERNAME: __token__
# TWINE_PASSWORD: ${{ secrets.PYPI }}

0 comments on commit d866c0f

Please sign in to comment.