Skip to content

Commit

Permalink
Merge pull request #80 from ketozhang/fix-publish-artifacts-dir
Browse files Browse the repository at this point in the history
Fix publish artifacts to PyPI due to directory names
  • Loading branch information
rpoleski authored Feb 20, 2023
2 parents de8fb1e + c873375 commit 16406b8
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:

jobs:
build_wheels:
name: ${{ matrix.os }} ${{ matrix.cibw_archs }} ${{ matrix.cw_build }}
name: ${{ matrix.os }} ${{ matrix.cibw_archs }} ${{ matrix.cibw_build }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
Expand Down Expand Up @@ -74,9 +74,16 @@ jobs:
steps:
- uses: actions/checkout@v3

- name: Download all artifacts to dist/
- name: Download sdist artifacts to dist/
uses: actions/download-artifact@v3
with:
name: sdist
path: dist/

- name: Download wheelhouse artifacts to dist/
uses: actions/download-artifact@v3
with:
name: wheelhouse
path: dist/

- name: Publish package to PyPI
Expand Down

0 comments on commit 16406b8

Please sign in to comment.