Skip to content

Commit

Permalink
fix(ci/release): Fix artifact path
Browse files Browse the repository at this point in the history
Signed-off-by: Luka Peschke <[email protected]>
  • Loading branch information
lukapeschke committed Oct 6, 2022
1 parent 1bbf9a5 commit d5e2af0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,21 +47,21 @@ jobs:
uses: actions/download-artifact@v3
with:
name: wheels-linux
path: wheel-linux
path: wheels-linux

- name: Download MacOS wheels
uses: actions/download-artifact@v3
with:
name: wheels-macos
path: wheel-macos
path: wheels-macos

- name: Publish to PyPI
uses: messense/maturin-action@v1
env:
MATURIN_PYPI_TOKEN: ${{ secrets.PYPI_API_TOKEN }}
with:
command: upload
args: --skip-existing wheels-linux/*.whl wheels-macos/*.whl
args: "--skip-existing wheels-linux/*.whl wheels-macos/*.whl"

- name: Release
uses: softprops/action-gh-release@v1
Expand Down

0 comments on commit d5e2af0

Please sign in to comment.