Skip to content

Commit

Permalink
ci: try to fix artifacts upload
Browse files Browse the repository at this point in the history
  • Loading branch information
k4black committed Feb 2, 2024
1 parent 297e074 commit fe8898f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/reusable-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,17 @@ jobs:
if: ${{ inputs.VERSION != '' }}
run: echo -n "${{ inputs.VERSION }}" > VERSION
- name: Build wheels
uses: pypa/[email protected].4
uses: pypa/[email protected].5
with:
output-dir: wheelhouse
env:
CIBW_SKIP: ${{ inputs.CIBW_SKIP }}
CIBW_BUILD: ${{ inputs.CIBW_BUILD }}
- name: List wheels
run: ls -lah ./wheelhouse
- uses: actions/upload-artifact@v4
with:
name: wheels-${{ matrix.os }}
path: ./wheelhouse/*.whl

build-sdist:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,8 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
with:
name: artifact # if `name: artifact` is omitted, the action will create extra parent dir
# name: artifact # if `name: artifact` is omitted, the action will create extra parent dir
name: wheels-${{ matrix.os }}
path: dist
- name: Show dist files
run: ls -lah ./dist
Expand Down

0 comments on commit fe8898f

Please sign in to comment.