From a0f3ea630e86678fe5cc8acd78109d8f4e434a9c Mon Sep 17 00:00:00 2001 From: Robin Vobruba Date: Mon, 4 Dec 2023 20:08:48 +0100 Subject: [PATCH] CI: build: Ensures STOML is installed, even after cache restoration [fix] --- .github/workflows/build.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 035e068..ceab28f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -62,6 +62,9 @@ jobs: - name: "Smart caching for rust/cargo" uses: Swatinem/rust-cache@v2 + - name: "Install STOML (BASH TOML parser) *again*, because the cache recreation above might have removed it" + run: scripts/install_stoml + - name: "Build" run: scripts/build