Skip to content

Commit 955f779

Browse files
committed
fix(ci): include bare gts tag in stable build tags
1 parent a77ab6c commit 955f779

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Justfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -626,11 +626,11 @@ generate-build-tags image="bluefin" tag="latest" flavor="main" kernel_pin="" ghc
626626
# Weekly Stable / Rebuild Stable on workflow_dispatch
627627
github_event="{{ github_event }}"
628628
if [[ "{{ tag }}" =~ "stable" && "${WEEKLY}" == "${TODAY}" && "${github_event}" =~ schedule ]]; then
629-
BUILD_TAGS+=("stable" "stable-${version}" "stable-${version:3}" "gts-${version}" "gts-${version:3}")
629+
BUILD_TAGS+=("stable" "stable-${version}" "stable-${version:3}" "gts" "gts-${version}" "gts-${version:3}")
630630
elif [[ "{{ tag }}" =~ "stable" && "${github_event}" =~ workflow_dispatch|workflow_call ]]; then
631-
BUILD_TAGS+=("stable" "stable-${version}" "stable-${version:3}" "gts-${version}" "gts-${version:3}")
631+
BUILD_TAGS+=("stable" "stable-${version}" "stable-${version:3}" "gts" "gts-${version}" "gts-${version:3}")
632632
elif [[ "{{ tag }}" =~ "stable" && "{{ ghcr }}" == "0" ]]; then
633-
BUILD_TAGS+=("stable" "stable-${version}" "stable-${version:3}" "gts-${version}" "gts-${version:3}")
633+
BUILD_TAGS+=("stable" "stable-${version}" "stable-${version:3}" "gts" "gts-${version}" "gts-${version:3}")
634634
elif [[ ! "{{ tag }}" =~ stable|beta ]]; then
635635
BUILD_TAGS+=("${FEDORA_VERSION}" "${FEDORA_VERSION}-${version}" "${FEDORA_VERSION}-${version:3}")
636636
fi

0 commit comments

Comments
 (0)