From a1eb49367211049d20a6c98a593af9c4e4e09bda Mon Sep 17 00:00:00 2001 From: RJ Trujillo Date: Thu, 12 Oct 2023 16:13:24 -0600 Subject: [PATCH] fix(f39): Build from main instead of nokmods nokmods is deprecated from Fedora 39 onward --- .github/workflows/build.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 96e200c..4b1dbdd 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -24,7 +24,7 @@ jobs: strategy: fail-fast: false matrix: - image_flavor: [-nokmods] + image_flavor: [-nokmods, -main] base_name: [asus] base_image_name: - silverblue @@ -41,6 +41,12 @@ jobs: is_latest_version: true is_stable_version: true exclude: + - image_flavor: -nokmods + major_version: 39 + - image_flavor: -main + major_version: 38 + - image_flavor: -main + major_version: 37 - base_image_name: vauxite major_version: 39 - base_image_name: onyx @@ -56,7 +62,7 @@ jobs: - name: Matrix Variables run: | echo "BASE_IMAGE_NAME=${{ matrix.base_image_name }}" >> $GITHUB_ENV - if [[ "${{ matrix.image_flavor }}" =~ "nokmods" ]]; then + if [[ "${{ matrix.image_flavor }}" =~ "nokmods" || "${{ matrix.image_flavor }}" =~ "main" ]]; then echo "IMAGE_NAME=${{ format('{0}-{1}', matrix.base_image_name, matrix.base_name) }}" >> $GITHUB_ENV else echo "IMAGE_NAME=${{ format('{0}-{1}{2}', matrix.base_image_name, matrix.base_name, matrix.image_flavor) }}" >> $GITHUB_ENV