diff --git a/.github/actions/releaser/cr.sh b/.github/actions/releaser/cr.sh index 4afdc232..4ef5bc27 100755 --- a/.github/actions/releaser/cr.sh +++ b/.github/actions/releaser/cr.sh @@ -9,6 +9,7 @@ set -o nounset set -o pipefail mark_latest=${MARK_LATEST:-true} +skip_execution=${SKIP_EXECUTION:-false} main() { local version=${VERSION:-v1.2.1} @@ -76,8 +77,6 @@ release_charts_inside_folders() { check_charts_released() { local folders=("$@") local unreleased_charts=() - local retries=5 - local delay=5 prepare_helm_repo @@ -92,18 +91,7 @@ check_charts_released() { chart_version=$(read_chart_version "${charts_dir}/${folder}") echo "Checking if \"$charts_dir/$folder\" has been released to the repo" - local released=false - for ((i=0; i