Skip to content

Commit

Permalink
Change release dependency from container to functional
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
nichtsfrei committed Feb 28, 2025
1 parent 13006c2 commit 7d6db05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/control.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 7d6db05

Please sign in to comment.