Skip to content

Commit

Permalink
Merge pull request #1955 from charlespierce/lock_cargo_wix
Browse files Browse the repository at this point in the history
Use lockfile when installing cargo-wix in CI
  • Loading branch information
chriskrycho authored Dec 4, 2024
2 parents b5bfec7 + 8646f58 commit f41ac5c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ jobs:
with:
rustflags: ""
- name: Add cargo-wix subcommand
run: cargo install cargo-wix
run: cargo install --locked cargo-wix
- name: Compile and package installer
run: |
cargo wix --nocapture --package volta --output target\wix\volta-windows.msi
Expand Down Expand Up @@ -114,7 +114,7 @@ jobs:
target: aarch64-pc-windows-msvc
rustflags: ""
- name: Add cargo-wix subcommand
run: cargo install cargo-wix
run: cargo install --locked cargo-wix
- name: Compile and package installer
run: |
cargo wix --nocapture --package volta --target aarch64-pc-windows-msvc --output target\wix\volta-windows-arm.msi
Expand Down

0 comments on commit f41ac5c

Please sign in to comment.