We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 99962ec commit c7e3721Copy full SHA for c7e3721
.github/workflows/release-node-bindings.yml
@@ -49,6 +49,7 @@ 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 }}
@@ -74,10 +75,10 @@ jobs:
74
75
version: 0.13.0
76
- name: Install cargo-zigbuild (Linux only)
77
if: runner.os == 'Linux'
- run: cargo install cargo-zigbuild
78
+ run: cargo binstall cargo-zigbuild
79
- name: Install cargo-xwin (Windows on Linux only)
80
if: runner.os == 'Linux' && contains(matrix.settings.target, 'windows')
- run: cargo install cargo-xwin
81
+ run: cargo binstall cargo-xwin
82
- name: Build (macOS)
83
if: runner.os == 'macOS'
84
run: |
0 commit comments