From 3166961c1dec2af0103183308a078a53d7ded586 Mon Sep 17 00:00:00 2001 From: Techassi Date: Wed, 16 Sep 2026 11:53:18 +0200 Subject: [PATCH 1/2] ci: Switch floating-tag input default in reusable workflow --- .github/workflows/reusable_build_image.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/reusable_build_image.yaml b/.github/workflows/reusable_build_image.yaml index 381942dff..726b64ec7 100644 --- a/.github/workflows/reusable_build_image.yaml +++ b/.github/workflows/reusable_build_image.yaml @@ -39,8 +39,7 @@ on: floating-tag: description: Whether to produce a floating tag type: boolean - # NOTE (@Techassi): Default to false for now, but eventually we want to default to true here - default: false + default: true secrets: harbor-robot-secret: description: The secret for the Harbor robot user used to push images and manifest From 7110ed18f6d8cf169ddb5fb594394403b3cd78df Mon Sep 17 00:00:00 2001 From: Techassi Date: Wed, 16 Sep 2026 12:00:17 +0200 Subject: [PATCH 2/2] ci: Publish floating tags by default --- .github/workflows/build_airflow.yaml | 6 +++--- .github/workflows/build_druid.yaml | 6 +++--- .github/workflows/build_hadoop.yaml | 6 +++--- .github/workflows/build_hbase.yaml | 6 +++--- .github/workflows/build_hive.yaml | 6 +++--- .github/workflows/build_java-base.yaml | 6 +++--- .github/workflows/build_java-devel.yaml | 6 +++--- .github/workflows/build_kafka-testing-tools.yaml | 6 +++--- .github/workflows/build_kafka.yaml | 6 +++--- .github/workflows/build_krb5.yaml | 6 +++--- .github/workflows/build_nifi.yaml | 6 +++--- .github/workflows/build_omid.yaml | 6 +++--- .github/workflows/build_opa.yaml | 6 +++--- .github/workflows/build_opensearch.yaml | 6 +++--- .github/workflows/build_opensearch_dashboards.yaml | 6 +++--- .github/workflows/build_spark-connect-client.yaml | 6 +++--- .github/workflows/build_spark-k8s.yaml | 6 +++--- .github/workflows/build_stackable-base.yaml | 6 +++--- .github/workflows/build_superset.yaml | 6 +++--- .github/workflows/build_testing-tools.yaml | 6 +++--- .github/workflows/build_tools.yaml | 6 +++--- .github/workflows/build_trino-cli.yaml | 6 +++--- .github/workflows/build_trino.yaml | 6 +++--- .github/workflows/build_vector.yaml | 6 +++--- .github/workflows/build_zookeeper.yaml | 6 +++--- 25 files changed, 75 insertions(+), 75 deletions(-) diff --git a/.github/workflows/build_airflow.yaml b/.github/workflows/build_airflow.yaml index 481b1e499..cd71f5e21 100644 --- a/.github/workflows/build_airflow.yaml +++ b/.github/workflows/build_airflow.yaml @@ -15,7 +15,7 @@ on: description: Produce floating tag type: boolean required: true - default: false + default: true schedule: - cron: 0 0 1/2 * * # https://crontab.guru/#0_0_1/2_*_* push: @@ -62,10 +62,10 @@ jobs: run: | set -euo pipefail - # Default to false if not set/empty (if not triggered by workflow_dispatch) + # Default to true if not set/empty (if not triggered by workflow_dispatch) # Keep this default value in sync with the default value specified for workflow_dispatch! if [ -z "${INPUT_FLOATING_TAG:-}" ]; then - echo "FLOATING_TAG=false" | tee -a "$GITHUB_OUTPUT" + echo "FLOATING_TAG=true" | tee -a "$GITHUB_OUTPUT" else echo "FLOATING_TAG=${INPUT_FLOATING_TAG}" | tee -a "$GITHUB_OUTPUT" fi diff --git a/.github/workflows/build_druid.yaml b/.github/workflows/build_druid.yaml index d8f81a633..9a6b9adbd 100644 --- a/.github/workflows/build_druid.yaml +++ b/.github/workflows/build_druid.yaml @@ -15,7 +15,7 @@ on: description: Produce floating tag type: boolean required: true - default: false + default: true schedule: - cron: 0 1 1/2 * * # https://crontab.guru/#0_1_1/2_*_* push: @@ -64,10 +64,10 @@ jobs: run: | set -euo pipefail - # Default to false if not set/empty (if not triggered by workflow_dispatch) + # Default to true if not set/empty (if not triggered by workflow_dispatch) # Keep this default value in sync with the default value specified for workflow_dispatch! if [ -z "${INPUT_FLOATING_TAG:-}" ]; then - echo "FLOATING_TAG=false" | tee -a "$GITHUB_OUTPUT" + echo "FLOATING_TAG=true" | tee -a "$GITHUB_OUTPUT" else echo "FLOATING_TAG=${INPUT_FLOATING_TAG}" | tee -a "$GITHUB_OUTPUT" fi diff --git a/.github/workflows/build_hadoop.yaml b/.github/workflows/build_hadoop.yaml index 80a8d48c9..6e27b6f2a 100644 --- a/.github/workflows/build_hadoop.yaml +++ b/.github/workflows/build_hadoop.yaml @@ -15,7 +15,7 @@ on: description: Produce floating tag type: boolean required: true - default: false + default: true schedule: - cron: 0 2 1/2 * * # https://crontab.guru/#0_2_1/2_*_* push: @@ -64,10 +64,10 @@ jobs: run: | set -euo pipefail - # Default to false if not set/empty (if not triggered by workflow_dispatch) + # Default to true if not set/empty (if not triggered by workflow_dispatch) # Keep this default value in sync with the default value specified for workflow_dispatch! if [ -z "${INPUT_FLOATING_TAG:-}" ]; then - echo "FLOATING_TAG=false" | tee -a "$GITHUB_OUTPUT" + echo "FLOATING_TAG=true" | tee -a "$GITHUB_OUTPUT" else echo "FLOATING_TAG=${INPUT_FLOATING_TAG}" | tee -a "$GITHUB_OUTPUT" fi diff --git a/.github/workflows/build_hbase.yaml b/.github/workflows/build_hbase.yaml index 04833161f..151ce32a7 100644 --- a/.github/workflows/build_hbase.yaml +++ b/.github/workflows/build_hbase.yaml @@ -15,7 +15,7 @@ on: description: Produce floating tag type: boolean required: true - default: false + default: true schedule: - cron: 0 0 2/2 * * # https://crontab.guru/#0_0_2/2_*_* push: @@ -65,10 +65,10 @@ jobs: run: | set -euo pipefail - # Default to false if not set/empty (if not triggered by workflow_dispatch) + # Default to true if not set/empty (if not triggered by workflow_dispatch) # Keep this default value in sync with the default value specified for workflow_dispatch! if [ -z "${INPUT_FLOATING_TAG:-}" ]; then - echo "FLOATING_TAG=false" | tee -a "$GITHUB_OUTPUT" + echo "FLOATING_TAG=true" | tee -a "$GITHUB_OUTPUT" else echo "FLOATING_TAG=${INPUT_FLOATING_TAG}" | tee -a "$GITHUB_OUTPUT" fi diff --git a/.github/workflows/build_hive.yaml b/.github/workflows/build_hive.yaml index d9e3bc53d..768f750c1 100644 --- a/.github/workflows/build_hive.yaml +++ b/.github/workflows/build_hive.yaml @@ -15,7 +15,7 @@ on: description: Produce floating tag type: boolean required: true - default: false + default: true schedule: - cron: 0 2 2/2 * * # https://crontab.guru/#0_2_2/2_*_* push: @@ -65,10 +65,10 @@ jobs: run: | set -euo pipefail - # Default to false if not set/empty (if not triggered by workflow_dispatch) + # Default to true if not set/empty (if not triggered by workflow_dispatch) # Keep this default value in sync with the default value specified for workflow_dispatch! if [ -z "${INPUT_FLOATING_TAG:-}" ]; then - echo "FLOATING_TAG=false" | tee -a "$GITHUB_OUTPUT" + echo "FLOATING_TAG=true" | tee -a "$GITHUB_OUTPUT" else echo "FLOATING_TAG=${INPUT_FLOATING_TAG}" | tee -a "$GITHUB_OUTPUT" fi diff --git a/.github/workflows/build_java-base.yaml b/.github/workflows/build_java-base.yaml index d99777efe..6e23b5ba5 100644 --- a/.github/workflows/build_java-base.yaml +++ b/.github/workflows/build_java-base.yaml @@ -15,7 +15,7 @@ on: description: Produce floating tag type: boolean required: true - default: false + default: true schedule: - cron: 0 0 1/2 * * # https://crontab.guru/#0_0_1/2_*_* push: @@ -60,10 +60,10 @@ jobs: run: | set -euo pipefail - # Default to false if not set/empty (if not triggered by workflow_dispatch) + # Default to true if not set/empty (if not triggered by workflow_dispatch) # Keep this default value in sync with the default value specified for workflow_dispatch! if [ -z "${INPUT_FLOATING_TAG:-}" ]; then - echo "FLOATING_TAG=false" | tee -a "$GITHUB_OUTPUT" + echo "FLOATING_TAG=true" | tee -a "$GITHUB_OUTPUT" else echo "FLOATING_TAG=${INPUT_FLOATING_TAG}" | tee -a "$GITHUB_OUTPUT" fi diff --git a/.github/workflows/build_java-devel.yaml b/.github/workflows/build_java-devel.yaml index 583be886f..3f2f5511b 100644 --- a/.github/workflows/build_java-devel.yaml +++ b/.github/workflows/build_java-devel.yaml @@ -15,7 +15,7 @@ on: description: Produce floating tag type: boolean required: true - default: false + default: true schedule: - cron: 0 1 1/2 * * # https://crontab.guru/#0_1_1/2_*_* push: @@ -60,10 +60,10 @@ jobs: run: | set -euo pipefail - # Default to false if not set/empty (if not triggered by workflow_dispatch) + # Default to true if not set/empty (if not triggered by workflow_dispatch) # Keep this default value in sync with the default value specified for workflow_dispatch! if [ -z "${INPUT_FLOATING_TAG:-}" ]; then - echo "FLOATING_TAG=false" | tee -a "$GITHUB_OUTPUT" + echo "FLOATING_TAG=true" | tee -a "$GITHUB_OUTPUT" else echo "FLOATING_TAG=${INPUT_FLOATING_TAG}" | tee -a "$GITHUB_OUTPUT" fi diff --git a/.github/workflows/build_kafka-testing-tools.yaml b/.github/workflows/build_kafka-testing-tools.yaml index a61af127f..cb0912366 100644 --- a/.github/workflows/build_kafka-testing-tools.yaml +++ b/.github/workflows/build_kafka-testing-tools.yaml @@ -15,7 +15,7 @@ on: description: Produce floating tag type: boolean required: true - default: false + default: true schedule: - cron: 0 2 1/2 * * # https://crontab.guru/#0_2_1/2_*_* push: @@ -64,10 +64,10 @@ jobs: run: | set -euo pipefail - # Default to false if not set/empty (if not triggered by workflow_dispatch) + # Default to true if not set/empty (if not triggered by workflow_dispatch) # Keep this default value in sync with the default value specified for workflow_dispatch! if [ -z "${INPUT_FLOATING_TAG:-}" ]; then - echo "FLOATING_TAG=false" | tee -a "$GITHUB_OUTPUT" + echo "FLOATING_TAG=true" | tee -a "$GITHUB_OUTPUT" else echo "FLOATING_TAG=${INPUT_FLOATING_TAG}" | tee -a "$GITHUB_OUTPUT" fi diff --git a/.github/workflows/build_kafka.yaml b/.github/workflows/build_kafka.yaml index a1b036522..bf7701bfc 100644 --- a/.github/workflows/build_kafka.yaml +++ b/.github/workflows/build_kafka.yaml @@ -15,7 +15,7 @@ on: description: Produce floating tag type: boolean required: true - default: false + default: true schedule: - cron: 0 0 2/2 * * # https://crontab.guru/#0_0_2/2_*_* push: @@ -65,10 +65,10 @@ jobs: run: | set -euo pipefail - # Default to false if not set/empty (if not triggered by workflow_dispatch) + # Default to true if not set/empty (if not triggered by workflow_dispatch) # Keep this default value in sync with the default value specified for workflow_dispatch! if [ -z "${INPUT_FLOATING_TAG:-}" ]; then - echo "FLOATING_TAG=false" | tee -a "$GITHUB_OUTPUT" + echo "FLOATING_TAG=true" | tee -a "$GITHUB_OUTPUT" else echo "FLOATING_TAG=${INPUT_FLOATING_TAG}" | tee -a "$GITHUB_OUTPUT" fi diff --git a/.github/workflows/build_krb5.yaml b/.github/workflows/build_krb5.yaml index 7a4f693b2..757465ac7 100644 --- a/.github/workflows/build_krb5.yaml +++ b/.github/workflows/build_krb5.yaml @@ -15,7 +15,7 @@ on: description: Produce floating tag type: boolean required: true - default: false + default: true schedule: - cron: 0 2 2/2 * * # https://crontab.guru/#0_2_2/2_*_* push: @@ -60,10 +60,10 @@ jobs: run: | set -euo pipefail - # Default to false if not set/empty (if not triggered by workflow_dispatch) + # Default to true if not set/empty (if not triggered by workflow_dispatch) # Keep this default value in sync with the default value specified for workflow_dispatch! if [ -z "${INPUT_FLOATING_TAG:-}" ]; then - echo "FLOATING_TAG=false" | tee -a "$GITHUB_OUTPUT" + echo "FLOATING_TAG=true" | tee -a "$GITHUB_OUTPUT" else echo "FLOATING_TAG=${INPUT_FLOATING_TAG}" | tee -a "$GITHUB_OUTPUT" fi diff --git a/.github/workflows/build_nifi.yaml b/.github/workflows/build_nifi.yaml index f6db301cb..62447fb65 100644 --- a/.github/workflows/build_nifi.yaml +++ b/.github/workflows/build_nifi.yaml @@ -15,7 +15,7 @@ on: description: Produce floating tag type: boolean required: true - default: false + default: true schedule: - cron: 0 0 1/2 * * # https://crontab.guru/#0_0_1/2_*_* push: @@ -64,10 +64,10 @@ jobs: run: | set -euo pipefail - # Default to false if not set/empty (if not triggered by workflow_dispatch) + # Default to true if not set/empty (if not triggered by workflow_dispatch) # Keep this default value in sync with the default value specified for workflow_dispatch! if [ -z "${INPUT_FLOATING_TAG:-}" ]; then - echo "FLOATING_TAG=false" | tee -a "$GITHUB_OUTPUT" + echo "FLOATING_TAG=true" | tee -a "$GITHUB_OUTPUT" else echo "FLOATING_TAG=${INPUT_FLOATING_TAG}" | tee -a "$GITHUB_OUTPUT" fi diff --git a/.github/workflows/build_omid.yaml b/.github/workflows/build_omid.yaml index 86927555c..10024a5c4 100644 --- a/.github/workflows/build_omid.yaml +++ b/.github/workflows/build_omid.yaml @@ -15,7 +15,7 @@ on: description: Produce floating tag type: boolean required: true - default: false + default: true schedule: - cron: 0 1 1/2 * * # https://crontab.guru/#0_1_1/2_*_* push: @@ -64,10 +64,10 @@ jobs: run: | set -euo pipefail - # Default to false if not set/empty (if not triggered by workflow_dispatch) + # Default to true if not set/empty (if not triggered by workflow_dispatch) # Keep this default value in sync with the default value specified for workflow_dispatch! if [ -z "${INPUT_FLOATING_TAG:-}" ]; then - echo "FLOATING_TAG=false" | tee -a "$GITHUB_OUTPUT" + echo "FLOATING_TAG=true" | tee -a "$GITHUB_OUTPUT" else echo "FLOATING_TAG=${INPUT_FLOATING_TAG}" | tee -a "$GITHUB_OUTPUT" fi diff --git a/.github/workflows/build_opa.yaml b/.github/workflows/build_opa.yaml index 1e5e0b81d..0d30fe73b 100644 --- a/.github/workflows/build_opa.yaml +++ b/.github/workflows/build_opa.yaml @@ -15,7 +15,7 @@ on: description: Produce floating tag type: boolean required: true - default: false + default: true schedule: - cron: 0 2 1/2 * * # https://crontab.guru/#0_2_1/2_*_* push: @@ -62,10 +62,10 @@ jobs: run: | set -euo pipefail - # Default to false if not set/empty (if not triggered by workflow_dispatch) + # Default to true if not set/empty (if not triggered by workflow_dispatch) # Keep this default value in sync with the default value specified for workflow_dispatch! if [ -z "${INPUT_FLOATING_TAG:-}" ]; then - echo "FLOATING_TAG=false" | tee -a "$GITHUB_OUTPUT" + echo "FLOATING_TAG=true" | tee -a "$GITHUB_OUTPUT" else echo "FLOATING_TAG=${INPUT_FLOATING_TAG}" | tee -a "$GITHUB_OUTPUT" fi diff --git a/.github/workflows/build_opensearch.yaml b/.github/workflows/build_opensearch.yaml index 359bcae8f..363baaf3e 100644 --- a/.github/workflows/build_opensearch.yaml +++ b/.github/workflows/build_opensearch.yaml @@ -15,7 +15,7 @@ on: description: Produce floating tag type: boolean required: true - default: false + default: true schedule: - cron: 0 0 2/2 * * # https://crontab.guru/#0_0_2/2_*_* push: @@ -65,10 +65,10 @@ jobs: run: | set -euo pipefail - # Default to false if not set/empty (if not triggered by workflow_dispatch) + # Default to true if not set/empty (if not triggered by workflow_dispatch) # Keep this default value in sync with the default value specified for workflow_dispatch! if [ -z "${INPUT_FLOATING_TAG:-}" ]; then - echo "FLOATING_TAG=false" | tee -a "$GITHUB_OUTPUT" + echo "FLOATING_TAG=true" | tee -a "$GITHUB_OUTPUT" else echo "FLOATING_TAG=${INPUT_FLOATING_TAG}" | tee -a "$GITHUB_OUTPUT" fi diff --git a/.github/workflows/build_opensearch_dashboards.yaml b/.github/workflows/build_opensearch_dashboards.yaml index 29c495de5..5fad40646 100644 --- a/.github/workflows/build_opensearch_dashboards.yaml +++ b/.github/workflows/build_opensearch_dashboards.yaml @@ -15,7 +15,7 @@ on: description: Produce floating tag type: boolean required: true - default: false + default: true schedule: - cron: 0 0 2/2 * * # https://crontab.guru/#0_0_2/2_*_* push: @@ -63,10 +63,10 @@ jobs: run: | set -euo pipefail - # Default to false if not set/empty (if not triggered by workflow_dispatch) + # Default to true if not set/empty (if not triggered by workflow_dispatch) # Keep this default value in sync with the default value specified for workflow_dispatch! if [ -z "${INPUT_FLOATING_TAG:-}" ]; then - echo "FLOATING_TAG=false" | tee -a "$GITHUB_OUTPUT" + echo "FLOATING_TAG=true" | tee -a "$GITHUB_OUTPUT" else echo "FLOATING_TAG=${INPUT_FLOATING_TAG}" | tee -a "$GITHUB_OUTPUT" fi diff --git a/.github/workflows/build_spark-connect-client.yaml b/.github/workflows/build_spark-connect-client.yaml index 7db27ab23..b1d8f1153 100644 --- a/.github/workflows/build_spark-connect-client.yaml +++ b/.github/workflows/build_spark-connect-client.yaml @@ -15,7 +15,7 @@ on: description: Produce floating tag type: boolean required: true - default: false + default: true schedule: - cron: 0 0 2/2 * * # https://crontab.guru/#0_0_2/2_*_* push: @@ -63,10 +63,10 @@ jobs: run: | set -euo pipefail - # Default to false if not set/empty (if not triggered by workflow_dispatch) + # Default to true if not set/empty (if not triggered by workflow_dispatch) # Keep this default value in sync with the default value specified for workflow_dispatch! if [ -z "${INPUT_FLOATING_TAG:-}" ]; then - echo "FLOATING_TAG=false" | tee -a "$GITHUB_OUTPUT" + echo "FLOATING_TAG=true" | tee -a "$GITHUB_OUTPUT" else echo "FLOATING_TAG=${INPUT_FLOATING_TAG}" | tee -a "$GITHUB_OUTPUT" fi diff --git a/.github/workflows/build_spark-k8s.yaml b/.github/workflows/build_spark-k8s.yaml index 1ad8993ce..e24b1c861 100644 --- a/.github/workflows/build_spark-k8s.yaml +++ b/.github/workflows/build_spark-k8s.yaml @@ -15,7 +15,7 @@ on: description: Produce floating tag type: boolean required: true - default: false + default: true schedule: - cron: 0 0 2/2 * * # https://crontab.guru/#0_0_2/2_*_* push: @@ -65,10 +65,10 @@ jobs: run: | set -euo pipefail - # Default to false if not set/empty (if not triggered by workflow_dispatch) + # Default to true if not set/empty (if not triggered by workflow_dispatch) # Keep this default value in sync with the default value specified for workflow_dispatch! if [ -z "${INPUT_FLOATING_TAG:-}" ]; then - echo "FLOATING_TAG=false" | tee -a "$GITHUB_OUTPUT" + echo "FLOATING_TAG=true" | tee -a "$GITHUB_OUTPUT" else echo "FLOATING_TAG=${INPUT_FLOATING_TAG}" | tee -a "$GITHUB_OUTPUT" fi diff --git a/.github/workflows/build_stackable-base.yaml b/.github/workflows/build_stackable-base.yaml index c7e5bd29c..ad4c16bcd 100644 --- a/.github/workflows/build_stackable-base.yaml +++ b/.github/workflows/build_stackable-base.yaml @@ -15,7 +15,7 @@ on: description: Produce floating tag type: boolean required: true - default: false + default: true schedule: - cron: 0 1 2/2 * * # https://crontab.guru/#0_1_2/2_*_* push: @@ -61,10 +61,10 @@ jobs: run: | set -euo pipefail - # Default to false if not set/empty (if not triggered by workflow_dispatch) + # Default to true if not set/empty (if not triggered by workflow_dispatch) # Keep this default value in sync with the default value specified for workflow_dispatch! if [ -z "${INPUT_FLOATING_TAG:-}" ]; then - echo "FLOATING_TAG=false" | tee -a "$GITHUB_OUTPUT" + echo "FLOATING_TAG=true" | tee -a "$GITHUB_OUTPUT" else echo "FLOATING_TAG=${INPUT_FLOATING_TAG}" | tee -a "$GITHUB_OUTPUT" fi diff --git a/.github/workflows/build_superset.yaml b/.github/workflows/build_superset.yaml index 9d4f8b0fb..14d2881e9 100644 --- a/.github/workflows/build_superset.yaml +++ b/.github/workflows/build_superset.yaml @@ -15,7 +15,7 @@ on: description: Produce floating tag type: boolean required: true - default: false + default: true schedule: - cron: 0 2 2/2 * * # https://crontab.guru/#0_2_2/2_*_* push: @@ -62,10 +62,10 @@ jobs: run: | set -euo pipefail - # Default to false if not set/empty (if not triggered by workflow_dispatch) + # Default to true if not set/empty (if not triggered by workflow_dispatch) # Keep this default value in sync with the default value specified for workflow_dispatch! if [ -z "${INPUT_FLOATING_TAG:-}" ]; then - echo "FLOATING_TAG=false" | tee -a "$GITHUB_OUTPUT" + echo "FLOATING_TAG=true" | tee -a "$GITHUB_OUTPUT" else echo "FLOATING_TAG=${INPUT_FLOATING_TAG}" | tee -a "$GITHUB_OUTPUT" fi diff --git a/.github/workflows/build_testing-tools.yaml b/.github/workflows/build_testing-tools.yaml index 764aebf8a..0ad8b9a32 100644 --- a/.github/workflows/build_testing-tools.yaml +++ b/.github/workflows/build_testing-tools.yaml @@ -15,7 +15,7 @@ on: description: Produce floating tag type: boolean required: true - default: false + default: true schedule: - cron: 0 0 1/2 * * # https://crontab.guru/#0_0_1/2_*_* push: @@ -60,10 +60,10 @@ jobs: run: | set -euo pipefail - # Default to false if not set/empty (if not triggered by workflow_dispatch) + # Default to true if not set/empty (if not triggered by workflow_dispatch) # Keep this default value in sync with the default value specified for workflow_dispatch! if [ -z "${INPUT_FLOATING_TAG:-}" ]; then - echo "FLOATING_TAG=false" | tee -a "$GITHUB_OUTPUT" + echo "FLOATING_TAG=true" | tee -a "$GITHUB_OUTPUT" else echo "FLOATING_TAG=${INPUT_FLOATING_TAG}" | tee -a "$GITHUB_OUTPUT" fi diff --git a/.github/workflows/build_tools.yaml b/.github/workflows/build_tools.yaml index 0b1914a18..82670670c 100644 --- a/.github/workflows/build_tools.yaml +++ b/.github/workflows/build_tools.yaml @@ -15,7 +15,7 @@ on: description: Produce floating tag type: boolean required: true - default: false + default: true schedule: - cron: 0 1 1/2 * * # https://crontab.guru/#0_1_1/2_*_* push: @@ -61,10 +61,10 @@ jobs: run: | set -euo pipefail - # Default to false if not set/empty (if not triggered by workflow_dispatch) + # Default to true if not set/empty (if not triggered by workflow_dispatch) # Keep this default value in sync with the default value specified for workflow_dispatch! if [ -z "${INPUT_FLOATING_TAG:-}" ]; then - echo "FLOATING_TAG=false" | tee -a "$GITHUB_OUTPUT" + echo "FLOATING_TAG=true" | tee -a "$GITHUB_OUTPUT" else echo "FLOATING_TAG=${INPUT_FLOATING_TAG}" | tee -a "$GITHUB_OUTPUT" fi diff --git a/.github/workflows/build_trino-cli.yaml b/.github/workflows/build_trino-cli.yaml index 3bcf0fe8b..cbe2c1c89 100644 --- a/.github/workflows/build_trino-cli.yaml +++ b/.github/workflows/build_trino-cli.yaml @@ -15,7 +15,7 @@ on: description: Produce floating tag type: boolean required: true - default: false + default: true schedule: - cron: 0 2 1/2 * * # https://crontab.guru/#0_2_1/2_*_* push: @@ -63,10 +63,10 @@ jobs: run: | set -euo pipefail - # Default to false if not set/empty (if not triggered by workflow_dispatch) + # Default to true if not set/empty (if not triggered by workflow_dispatch) # Keep this default value in sync with the default value specified for workflow_dispatch! if [ -z "${INPUT_FLOATING_TAG:-}" ]; then - echo "FLOATING_TAG=false" | tee -a "$GITHUB_OUTPUT" + echo "FLOATING_TAG=true" | tee -a "$GITHUB_OUTPUT" else echo "FLOATING_TAG=${INPUT_FLOATING_TAG}" | tee -a "$GITHUB_OUTPUT" fi diff --git a/.github/workflows/build_trino.yaml b/.github/workflows/build_trino.yaml index 0028b2824..98003f846 100644 --- a/.github/workflows/build_trino.yaml +++ b/.github/workflows/build_trino.yaml @@ -15,7 +15,7 @@ on: description: Produce floating tag type: boolean required: true - default: false + default: true schedule: - cron: 0 0 2/2 * * # https://crontab.guru/#0_0_2/2_*_* push: @@ -64,10 +64,10 @@ jobs: run: | set -euo pipefail - # Default to false if not set/empty (if not triggered by workflow_dispatch) + # Default to true if not set/empty (if not triggered by workflow_dispatch) # Keep this default value in sync with the default value specified for workflow_dispatch! if [ -z "${INPUT_FLOATING_TAG:-}" ]; then - echo "FLOATING_TAG=false" | tee -a "$GITHUB_OUTPUT" + echo "FLOATING_TAG=true" | tee -a "$GITHUB_OUTPUT" else echo "FLOATING_TAG=${INPUT_FLOATING_TAG}" | tee -a "$GITHUB_OUTPUT" fi diff --git a/.github/workflows/build_vector.yaml b/.github/workflows/build_vector.yaml index 57b6c4342..ab541cf5a 100644 --- a/.github/workflows/build_vector.yaml +++ b/.github/workflows/build_vector.yaml @@ -15,7 +15,7 @@ on: description: Produce floating tag type: boolean required: true - default: false + default: true schedule: - cron: 0 1 2/2 * * # https://crontab.guru/#0_1_2/2_*_* push: @@ -60,10 +60,10 @@ jobs: run: | set -euo pipefail - # Default to false if not set/empty (if not triggered by workflow_dispatch) + # Default to true if not set/empty (if not triggered by workflow_dispatch) # Keep this default value in sync with the default value specified for workflow_dispatch! if [ -z "${INPUT_FLOATING_TAG:-}" ]; then - echo "FLOATING_TAG=false" | tee -a "$GITHUB_OUTPUT" + echo "FLOATING_TAG=true" | tee -a "$GITHUB_OUTPUT" else echo "FLOATING_TAG=${INPUT_FLOATING_TAG}" | tee -a "$GITHUB_OUTPUT" fi diff --git a/.github/workflows/build_zookeeper.yaml b/.github/workflows/build_zookeeper.yaml index a76e11c92..1532742fe 100644 --- a/.github/workflows/build_zookeeper.yaml +++ b/.github/workflows/build_zookeeper.yaml @@ -15,7 +15,7 @@ on: description: Produce floating tag type: boolean required: true - default: false + default: true schedule: - cron: 0 2 2/2 * * # https://crontab.guru/#0_2_2/2_*_* push: @@ -64,10 +64,10 @@ jobs: run: | set -euo pipefail - # Default to false if not set/empty (if not triggered by workflow_dispatch) + # Default to true if not set/empty (if not triggered by workflow_dispatch) # Keep this default value in sync with the default value specified for workflow_dispatch! if [ -z "${INPUT_FLOATING_TAG:-}" ]; then - echo "FLOATING_TAG=false" | tee -a "$GITHUB_OUTPUT" + echo "FLOATING_TAG=true" | tee -a "$GITHUB_OUTPUT" else echo "FLOATING_TAG=${INPUT_FLOATING_TAG}" | tee -a "$GITHUB_OUTPUT" fi