From 7ae182dcec391d6895fd8c09b4e0a3a62c9d5312 Mon Sep 17 00:00:00 2001 From: "Jorge O. Castro" Date: Sat, 11 Feb 2023 19:18:40 -0500 Subject: [PATCH 1/2] feat: add Fedora 38 build, build one hour behind the base image --- .github/workflows/build.yml | 4 ++-- Containerfile | 4 +++- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index dcfe7600..f1221499 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -4,7 +4,7 @@ on: branches: - main schedule: - - cron: '20 20 * * *' # 8:20pm everyday + - cron: '21 20 * * *' # 9:20pm everyday push: branches: - main @@ -25,7 +25,7 @@ jobs: strategy: fail-fast: false matrix: - major_version: [37] + major_version: [37, 38] include: - major_version: 37 is_latest: true diff --git a/Containerfile b/Containerfile index c382b37b..c62ba459 100644 --- a/Containerfile +++ b/Containerfile @@ -1,4 +1,6 @@ -FROM ghcr.io/ublue-os/base:latest +ARG FEDORA_MAJOR_VERSION=37 + +FROM ghcr.io/ublue-os/base:${FEDORA_MAJOR_VERSION} # See https://pagure.io/releng/issue/11047 for final location COPY etc /etc From 8a3b7a3e7d792673842ce50c783871fed517e434 Mon Sep 17 00:00:00 2001 From: "Jorge O. Castro" Date: Sun, 12 Feb 2023 18:30:56 -0500 Subject: [PATCH 2/2] chore: drop 38 builds 38 will be busted for a bit for this image, so let's just make the cron adjustments for now. --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f1221499..8aa45e92 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -25,7 +25,7 @@ jobs: strategy: fail-fast: false matrix: - major_version: [37, 38] + major_version: [37] include: - major_version: 37 is_latest: true