From b9120fa0b6942dfb9bba876f7b79196270129597 Mon Sep 17 00:00:00 2001 From: Philipp Eder Date: Tue, 18 Feb 2025 12:52:26 +0100 Subject: [PATCH] Change release dependency from container to functional As the release container are build afterwards when the tag is created the release step should run after the functional tests succeeded instead of when the container got build. --- .github/workflows/control.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/control.yml b/.github/workflows/control.yml index a8479cfe0..fa9516d5c 100644 --- a/.github/workflows/control.yml +++ b/.github/workflows/control.yml @@ -126,7 +126,7 @@ jobs: # instead it is pushed after the tag is created. # # For now we just don't use it as a dependency for releases which may is counter intuitive - needs: [container, init] + needs: [functional, init] if: ( needs.init.outputs.release_kind == 'major' || needs.init.outputs.release_kind == 'minor' || needs.init.outputs.release_kind == 'patch' ) uses: ./.github/workflows/release.yml