Skip to content
This repository has been archived by the owner on Mar 27, 2024. It is now read-only.

Commit

Permalink
fix(f39): Build from main instead of nokmods
Browse files Browse the repository at this point in the history
nokmods is deprecated from Fedora 39 onward
  • Loading branch information
EyeCantCU committed Oct 12, 2023
1 parent d4b9b20 commit a1eb493
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
strategy:
fail-fast: false
matrix:
image_flavor: [-nokmods]
image_flavor: [-nokmods, -main]
base_name: [asus]
base_image_name:
- silverblue
Expand All @@ -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
Expand All @@ -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
Expand Down

0 comments on commit a1eb493

Please sign in to comment.