Skip to content

Commit

Permalink
try to fix upload-artifact #4
Browse files Browse the repository at this point in the history
  • Loading branch information
christoph2 committed Oct 3, 2024
1 parent d476af5 commit c55f2c8
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/pythonapp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,11 @@ jobs:

- uses: actions/upload-artifact@v4
with:
# path: ./wheelhouse/*.whl
# path: ./dist/*.whl
# include-hidden-files: true
# retention-days: 1
name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }}
path: ./wheelhouse/*.whl
path: ./dist/*.whl

build_sdist:
name: Build source distribution
Expand All @@ -54,7 +54,7 @@ jobs:
- uses: actions/upload-artifact@v4
with:
path: wheelhouse/*.tar.gz
path: dist/*.tar.gz
include-hidden-files: true
retention-days: 1

Expand All @@ -68,9 +68,9 @@ jobs:
- uses: actions/download-artifact@v4.1.7
with:
# name: artifact
path: wheelhouse
path: dist
merge-multiple: true
# pattern: wheelhouse/*
# pattern: dist/*

- uses: pypa/gh-action-pypi-publish@v1.4.2
with:
Expand Down

0 comments on commit c55f2c8

Please sign in to comment.