From 088b9b7762c28b5d1f88e486acda6fdb8adbfdc3 Mon Sep 17 00:00:00 2001 From: Marius Posta Date: Mon, 19 Feb 2024 07:23:22 -0800 Subject: [PATCH] .github: fix python CDK publish (#35391) --- tools/integrations/manage.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tools/integrations/manage.sh b/tools/integrations/manage.sh index c7814a5e123d..c90a47c36c88 100755 --- a/tools/integrations/manage.sh +++ b/tools/integrations/manage.sh @@ -191,7 +191,10 @@ cmd_publish() { _error_if_tag_exists "$versioned_image" # building the connector - cmd_build "$path" "$run_tests" + if [ "$path" != "airbyte-cdk/python"] + # The python CDK will already have been built and tested earlier in the github workflow. + cmd_build "$path" "$run_tests" + fi # in case curing the build / tests someone this version has been published. _error_if_tag_exists "$versioned_image"