Skip to content

Commit

Permalink
try to fix upload-artifact #6
Browse files Browse the repository at this point in the history
  • Loading branch information
christoph2 committed Oct 4, 2024
1 parent f4b447e commit 3859fef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pythonapp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
# include-hidden-files: true
# retention-days: 1
name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }}
path: ./dist/*.whl
path: ./wheelhouse/*.whl

build_sdist:
name: Build source distribution
Expand All @@ -59,7 +59,7 @@ jobs:
retention-days: 1

upload_pypi:
needs: [build_wheels] # , build_sdist
needs: [build_wheels, build_sdist] # , build_sdist
runs-on: ubuntu-latest
# if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/')
# alternatively, to publish when a GitHub Release is created, use the following rule:
Expand Down

0 comments on commit 3859fef

Please sign in to comment.