We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7d3aabd commit 10bada5Copy full SHA for 10bada5
.github/workflows/build.yml
@@ -55,14 +55,16 @@ jobs:
55
uses: prefix-dev/setup-pixi@194d461b21b6c5717c722ffc597fa91ed2ff29fa # v0.9.1
56
with:
57
environments: build
58
- activate-environment: true
59
- name: Set version
60
run: pixi run -e build set-version
+ - name: Get Python version interpreter path
61
+ id: interpreter
62
+ run: echo "path=$(pixi run -e build which python)" >> $GITHUB_OUTPUT
63
- name: Build wheel
64
uses: PyO3/maturin-action@86b9d133d34bc1b40018696f782949dac11bd380 # v1.49.4
65
66
command: build
- args: --out dist -i python --release
67
+ args: --out dist -i ${{ steps.interpreter.outputs.path }} --release
68
manylinux: auto
69
sccache: true
70
- name: Check package
0 commit comments