From 5c9be03e69634aa1c0f26d3cd1472f218eb05f91 Mon Sep 17 00:00:00 2001 From: Theo Chatzimichos Date: Fri, 5 Apr 2024 00:32:50 +0300 Subject: [PATCH] ci: run the publish-artifacts job last I prefer not to publish any artifacts/images if the tests (lint/unit/others) are failing. Signed-off-by: Theo Chatzimichos --- .github/workflows/ci.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6cbfe95..948586f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -241,7 +241,13 @@ jobs: publish-artifacts: runs-on: ubuntu-22.04 - needs: detect-noop + needs: + -detect-noop + - report-breaking-changes + - lint + - check-diff + - unit-tests + - local-deploy if: needs.detect-noop.outputs.noop != 'true' steps: