From b82a8976a7ac411f4735dd80fe9afdb3be542b69 Mon Sep 17 00:00:00 2001 From: RJ Trujillo Date: Sun, 15 Oct 2023 07:54:59 -0600 Subject: [PATCH] feat: Mark Fedora 39 images as stable and roll out gts #163 This will push Fedora 39 images to latest and set Fedora 38 as the gts release --- .github/workflows/build.yml | 4 ++-- Containerfile | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c404d50..a718e9c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -31,10 +31,10 @@ jobs: include: - major_version: 39 is_latest_version: true - is_stable_version: false + 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 exclude: diff --git a/Containerfile b/Containerfile index 850709f..c135417 100644 --- a/Containerfile +++ b/Containerfile @@ -2,11 +2,11 @@ ARG BASE_IMAGE_NAME="${BASE_IMAGE_NAME:-silverblue}" ARG IMAGE_FLAVOR="${IMAGE_FLAVOR}:-main" ARG SOURCE_IMAGE="${SOURCE_IMAGE:-${BASE_IMAGE_NAME}${IMAGE_FLAVOR}}" ARG BASE_IMAGE="ghcr.io/ublue-os/${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 surface ARG BASE_IMAGE_NAME="${BASE_IMAGE_NAME:-silverblue}" -ARG FEDORA_MAJOR_VERSION="${FEDORA_MAJOR_VERSION:-38}" +ARG FEDORA_MAJOR_VERSION="${FEDORA_MAJOR_VERSION:-39}" # Store a copy of files so we not have to polute # every image with image specific files.