We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
cargo-auditable
1 parent 2156963 commit 478aa08Copy full SHA for 478aa08
1 file changed
.github/workflows/build.yml
@@ -75,6 +75,12 @@ jobs:
75
run: |
76
printf '@cargo auditable %%*\n' > "C:/cargo-auditable-wrapper.cmd"
77
echo "CARGO=C:\\cargo-auditable-wrapper.cmd" >> "$GITHUB_ENV"
78
+ - name: Prepare cargo-auditable wrapper (Linux)
79
+ # The wrapper itself is created inside the manylinux container by
80
+ # `before-script-linux` below; here we only point CARGO at it on the
81
+ # host so maturin-action forwards the value via `-e CARGO=...`.
82
+ if: github.event_name == 'release' && runner.os == 'Linux'
83
+ run: echo "CARGO=/usr/local/bin/cargo-auditable-wrapper" >> "$GITHUB_ENV"
84
- name: Build wheel
85
uses: PyO3/maturin-action@e83996d129638aa358a18fbd1dfb82f0b0fb5d3b # v1.51.0 # zizmor: ignore[cache-poisoning]
86
with:
0 commit comments