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

Commit

Permalink
feat: Introduce support for gts tag (tracks Fedora - 1)
Browse files Browse the repository at this point in the history
Allows users to run one release behind the latest Fedora version without
any intervention every major version upgrade
  • Loading branch information
EyeCantCU committed Oct 15, 2023
1 parent d069a20 commit dbfeddb
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,11 @@ jobs:
- major_version: 39
is_latest_version: true
is_stable_version: false
is_gts_version: false
- major_version: 38
is_latest_version: true
is_stable_version: true
is_gts_version: true
exclude:
- image_flavor: -nokmods
major_version: 39
Expand Down Expand Up @@ -87,6 +89,8 @@ jobs:
if [[ "${{ matrix.is_latest_version }}" == "true" ]] && \
[[ "${{ matrix.is_stable_version }}" == "true" ]]; then
BUILD_TAGS+=("latest")
elif [[ "${{ matrix.is_gts_version }}" == "true" ]]; then
BUILD_TAGS+=("gts")
fi
if [[ "${{ github.event_name }}" == "pull_request" ]]; then
Expand Down

0 comments on commit dbfeddb

Please sign in to comment.