diff --git a/.github/workflows/tag_image_push.yml b/.github/workflows/tag_image_push.yml index 9499722b..da9169ba 100644 --- a/.github/workflows/tag_image_push.yml +++ b/.github/workflows/tag_image_push.yml @@ -57,12 +57,11 @@ jobs: id: which_editions run: | . .github/scripts/build.functions.sh - . .github/scripts/docker.functions.sh release_type=${{ env.RELEASE_TYPE }} triggered_by=${{ github.event_name }} - should_build_oss = $(should_build_oss "$release_type") - should_build_ee = $(should_build_ee "$release_type") + should_build_oss=$(should_build_oss "$release_type") + should_build_ee=$(should_build_ee "$release_type") echo "should_build_ee=${should_build_ee}" >> $GITHUB_OUTPUT echo "should_build_oss=${should_build_oss}" >> $GITHUB_OUTPUT