From 2de6f9765b973406e467be1f82e57bb01869f6d0 Mon Sep 17 00:00:00 2001 From: RJ Trujillo Date: Sat, 14 Oct 2023 19:07:42 -0600 Subject: [PATCH] feat(ci): Introduce support for gts tag (tracks Fedora - 1) Allows users to run one release behind the latest Fedora version without any intervention every major version upgrade --- .github/workflows/build.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 49a37bb00d3..fb4fc3a86e2 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -26,9 +26,11 @@ jobs: - major_version: 38 is_latest_version: true is_stable_version: true + is_gts_version: true - major_version: 39 is_latest_version: true is_stable_version: false + is_gts_version: false exclude: - image_flavor: surface major_version: 39 @@ -81,6 +83,8 @@ jobs: if [[ "${{ matrix.is_latest_version }}" == "true" ]] && \ [[ "${{ matrix.is_stable_version }}" == "true" ]]; then BUILD_TAGS+=("latest") + elif [[ "${{ matrix.is_gts_version }}" == "true" ]]; then + BUILD_TAGS+=("gts") fi if [[ "${{ github.event_name }}" == "pull_request" ]]; then