From 73e6d049cd2328cb30754cdbcff0da33d142fc25 Mon Sep 17 00:00:00 2001 From: m2 <69128853+m2Giles@users.noreply.github.com> Date: Fri, 18 Oct 2024 13:40:54 -0400 Subject: [PATCH] feat: Add a beta tag (#651) Co-authored-by: Jorge O. Castro --- .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 6be76ec..9831a72 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=true 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