Skip to content

Commit

Permalink
feat(ci): Introduce support for gts tag (tracks Fedora - 1) (#594)
Browse files Browse the repository at this point in the history
  • Loading branch information
EyeCantCU committed Oct 15, 2023
1 parent 04d66ed commit 5f804bb
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 @@ -26,9 +26,11 @@ jobs:
- major_version: 38
is_latest_version: true
is_stable_version: true
is_gts_version: true
- major_version: 39
is_latest_version: true
is_stable_version: false
is_gts_version: false
exclude:
- image_flavor: surface
major_version: 39
Expand Down Expand Up @@ -81,6 +83,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 5f804bb

Please sign in to comment.