From 900b39d29b1871d7fa142281424bf28cd4541ad6 Mon Sep 17 00:00:00 2001 From: J / Jacob Babich Date: Sat, 5 Oct 2024 23:48:12 -0400 Subject: [PATCH] ci: run the prerequisite installation step when compiling binaries for release --- .../workflows/compile-and-publish-binaries-to-release.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/compile-and-publish-binaries-to-release.yml b/.github/workflows/compile-and-publish-binaries-to-release.yml index 3345e9b..e073bb9 100644 --- a/.github/workflows/compile-and-publish-binaries-to-release.yml +++ b/.github/workflows/compile-and-publish-binaries-to-release.yml @@ -55,7 +55,11 @@ jobs: - name: Checkout repository uses: actions/checkout@v4 - - name: Install Rust toolchain + - name: Install prerequisite build chain + if: matrix.supporteds.install_prerequisite + run: ${{ matrix.supporteds.install_prerequisite }} + + - name: Install stable Rust toolchain uses: dtolnay/rust-toolchain@stable - uses: Swatinem/rust-cache@v2