Skip to content

Commit 2f58441

Browse files
committed
ci: Fix wheel upload
1 parent 2694082 commit 2f58441

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/python.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
- main
1212
- master
1313
tags:
14-
- '*'
14+
- lox-space-*
1515
pull_request:
1616
workflow_dispatch:
1717

@@ -117,11 +117,13 @@ jobs:
117117
needs: [ linux, windows, macos, sdist ]
118118
steps:
119119
- uses: actions/download-artifact@v3
120+
id: download-wheels
120121
with:
121122
name: wheels
123+
path: wheels
122124
- name: Publish to PyPI
123125
uses: PyO3/maturin-action@v1
124126
with:
125-
working-directory: ./crates/lox-space
127+
working-directory: ${{steps.download-wheels.outputs.download-path}}
126128
command: upload
127129
args: --non-interactive --skip-existing *

0 commit comments

Comments
 (0)