We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6a17bda commit 11e0aabCopy full SHA for 11e0aab
.github/workflows/release-node-bindings.yml
@@ -49,7 +49,6 @@ jobs:
49
name: Build - ${{ matrix.settings.target }}
50
runs-on: ${{ matrix.settings.host }}
51
steps:
52
- - uses: cargo-bins/cargo-binstall@main
53
- uses: actions/checkout@v4
54
with:
55
ref: ${{ inputs.ref }}
@@ -73,6 +72,13 @@ jobs:
73
72
uses: goto-bus-stop/setup-zig@v2
74
75
version: 0.13.0
+
76
+ # Binstall is only needed for install cross-compilation
77
+ # tools on linux
78
+ - name: Install Binstall (Linux only)
79
+ if: runner.os == 'Linux'
80
+ uses: cargo-bins/cargo-binstall@main
81
82
- name: Install cargo-zigbuild (Linux only)
83
if: runner.os == 'Linux'
84
run: cargo binstall cargo-zigbuild -y
0 commit comments