From 616876e73fa1fec7debb138f37557226b9ccc0dc Mon Sep 17 00:00:00 2001 From: Jon Seager Date: Fri, 22 May 2026 13:04:06 +0000 Subject: [PATCH] fix(ci): Install mold linker and rustfmt in deploy workflow The Deploy workflow on main failed because .cargo/config.toml requires the mold linker, but deploy.yml only installed lld. The earlier fix commit only updated push.yml, missing deploy.yml. --- .github/workflows/deploy.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 27df519..bd84644 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -32,7 +32,10 @@ jobs: cargo-${{ runner.os }}- - name: Install system dependencies - run: sudo apt-get update && sudo apt-get install -y clang lld libssl-dev pkg-config + run: sudo apt-get update && sudo apt-get install -y clang lld mold libssl-dev pkg-config + + - name: Ensure Rust components + run: rustup component add rustfmt clippy - name: Check formatting run: cargo fmt -- --check