From cba7dd04c50e91220396ed0666c4dfd4e26d1f9e Mon Sep 17 00:00:00 2001 From: RJ Trujillo Date: Sun, 15 Oct 2023 07:41:51 -0600 Subject: [PATCH] feat: Mark Fedora 39 images as stable and roll out gts This will push Fedora 39 images to latest and set Fedora 38 as the gts release --- .github/workflows/build.yml | 4 ++-- Containerfile | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4743e4e9..df6c4ce2 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -36,12 +36,12 @@ jobs: is_stable_version: true is_gts_version: false - major_version: 38 - is_latest_version: true + is_latest_version: false is_stable_version: true is_gts_version: true - major_version: 39 is_latest_version: true - is_stable_version: false + is_stable_version: true is_gts_version: false exclude: # There is no Fedora 37 version of sericea diff --git a/Containerfile b/Containerfile index 80ae7a0c..f1e4c8c1 100644 --- a/Containerfile +++ b/Containerfile @@ -1,7 +1,7 @@ ARG IMAGE_NAME="${IMAGE_NAME:-silverblue}" ARG SOURCE_IMAGE="${SOURCE_IMAGE:-silverblue}" ARG BASE_IMAGE="quay.io/fedora-ostree-desktops/${SOURCE_IMAGE}" -ARG FEDORA_MAJOR_VERSION="${FEDORA_MAJOR_VERSION:-38}" +ARG FEDORA_MAJOR_VERSION="${FEDORA_MAJOR_VERSION:-39}" FROM ${BASE_IMAGE}:${FEDORA_MAJOR_VERSION} AS nokmods