From 3d3d4a8352567667bad758414e5136085b60f846 Mon Sep 17 00:00:00 2001 From: Ratan Kaliani Date: Wed, 18 Sep 2024 18:49:22 -0700 Subject: [PATCH] fix: build toolchain --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 45cb2a3c02f..8ad4f4c2378 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -48,10 +48,10 @@ jobs: - name: Build run: | cd sp1/crates/cli - GITHUB_ACTIONS=false SP1_BUILD_DIR=$GITHUB_WORKSPACE cargo install --force --locked --path . + GITHUB_ACTIONS=false SP1_BUILD_DIR=$GITHUB_WORKSPACE cargo run --bin cargo-prove -- prove build-toolchain - name: Archive build output uses: actions/upload-artifact@v3 with: name: rust-toolchain-${{ matrix.triple }} - path: sp1/cli/rust-toolchain-${{ matrix.triple }}.tar.gz \ No newline at end of file + path: sp1/crates/cli/rust-toolchain-${{ matrix.triple }}.tar.gz \ No newline at end of file