From 883fd0b1358042ee0e0cf8c408037d08b3f43c22 Mon Sep 17 00:00:00 2001 From: m2 <69128853+m2Giles@users.noreply.github.com> Date: Fri, 18 Oct 2024 07:28:35 -0400 Subject: [PATCH 1/2] feat: Add a beta tag Give a convenience tag for the pre-release images. --- .github/workflows/reusable-build.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/reusable-build.yml b/.github/workflows/reusable-build.yml index 6be76ecf..6c10a0f1 100644 --- a/.github/workflows/reusable-build.yml +++ b/.github/workflows/reusable-build.yml @@ -63,14 +63,17 @@ jobs: IS_LATEST_VERSION=false IS_STABLE_VERSION=true IS_GTS_VERSION=true + IS_BETA_VERSION=false elif [[ "${{ matrix.fedora_version }}" -eq "40" ]]; then IS_LATEST_VERSION=true IS_STABLE_VERSION=true IS_GTS_VERSION=false + IS_BETA_VERSION=false elif [[ "${{ matrix.fedora_version }}" -eq "41" ]]; then IS_LATEST_VERSION=false IS_STABLE_VERSION=false IS_GTS_VERSION=false + IS_BETA_VERSION=false fi COMMIT_TAGS=() @@ -103,6 +106,10 @@ jobs: BUILD_TAGS+=("gts-${TIMESTAMP}") BUILD_TAGS+=("gts") echo "DEFAULT_TAG=gts" >> $GITHUB_ENV + elif [[ "${IS_BETA_VERSION}" == "true" ]]; then + BUILD_TAGS+=("beta-${TIMESTAMP}") + BUILD_TAGS+=("beta") + echo "DEFAULT_TAG=beta" >> $GITHUB_ENV fi if [[ "${{ github.event_name }}" == "pull_request" ]]; then From 2daf76e5e156850a2f4e20a1f9677520cec6e7ee Mon Sep 17 00:00:00 2001 From: "Jorge O. Castro" Date: Fri, 18 Oct 2024 13:31:13 -0400 Subject: [PATCH 2/2] Update .github/workflows/reusable-build.yml --- .github/workflows/reusable-build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/reusable-build.yml b/.github/workflows/reusable-build.yml index 6c10a0f1..9831a72a 100644 --- a/.github/workflows/reusable-build.yml +++ b/.github/workflows/reusable-build.yml @@ -73,7 +73,7 @@ jobs: IS_LATEST_VERSION=false IS_STABLE_VERSION=false IS_GTS_VERSION=false - IS_BETA_VERSION=false + IS_BETA_VERSION=true fi COMMIT_TAGS=()