From 5d399728cfddc96cfbcfbae78b7afa044006829b Mon Sep 17 00:00:00 2001 From: Hugo Larcher Date: Wed, 8 Jan 2025 11:41:18 +0100 Subject: [PATCH] chore: Update CI to skip docker image build if Rust checks fail. --- .github/workflows/build_ci.yaml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_ci.yaml b/.github/workflows/build_ci.yaml index dd7ea06..223154e 100644 --- a/.github/workflows/build_ci.yaml +++ b/.github/workflows/build_ci.yaml @@ -17,5 +17,8 @@ concurrency: cancel-in-progress: true jobs: - - use: ./.github/workflows/rust.yaml - - use: ./.github/workflows/build.yaml \ No newline at end of file + rust: + use: ./.github/workflows/rust.yaml + build: + use: ./.github/workflows/build.yaml + needs: rust \ No newline at end of file