From e7e02ed8bca3935539afe67b94f9c64386c9e0a5 Mon Sep 17 00:00:00 2001 From: Jarrett Tierney Date: Thu, 11 Jul 2024 16:54:35 -0700 Subject: [PATCH] fix cross install for serde bug --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e12f8eaaf..8ee89994c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -119,7 +119,7 @@ jobs: - name: Install Cross # Pin cargo cross to a version that we know is working for us. run: | - cargo install cross --git https://github.com/cross-rs/cross/ --rev d6511b7b + cargo install cross --locked --git https://github.com/cross-rs/cross/ --rev d6511b7b - name: Run cargo-dist # This logic is a bit janky because it's trying to be a polyglot between # powershell and bash since this will run on windows, macos, and linux!