From 5a472d2ab71e6fc40f32d685fb8a09ae713bbc4c Mon Sep 17 00:00:00 2001 From: Lander Usategui Date: Tue, 26 Dec 2023 10:49:19 +0100 Subject: [PATCH] Use correct needs --- .github/workflows/build.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index b041616..4940aa8 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -13,7 +13,7 @@ jobs: build-base: name: Base runs-on: ubuntu-22.04 - needs: [Build] + needs: [build] # if: github.ref == 'refs/heads/rolling' steps: - uses: actions/checkout@v2 @@ -26,7 +26,7 @@ jobs: deployment: name: Deployment runs-on: ubuntu-22.04 - needs: [Base] + needs: [build-base] # if: github.ref == 'refs/heads/rolling' steps: - uses: actions/checkout@v2