Skip to content

Commit

Permalink
ci: Fix wheel upload
Browse files Browse the repository at this point in the history
  • Loading branch information
helgee committed Jul 19, 2024
1 parent 7c025e7 commit 6f3ad78
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:
- main
- master
tags:
- '*'
- lox-space-*
pull_request:
workflow_dispatch:

Expand Down Expand Up @@ -117,11 +117,13 @@ jobs:
needs: [ linux, windows, macos, sdist ]
steps:
- uses: actions/download-artifact@v3
id: download-wheels
with:
name: wheels
path: wheels
- name: Publish to PyPI
uses: PyO3/maturin-action@v1
with:
working-directory: ./crates/lox-space
working-directory: ${{steps.download-wheels.outputs.download-path}}
command: upload
args: --non-interactive --skip-existing *

0 comments on commit 6f3ad78

Please sign in to comment.