From c5ecd80cf6f2a374af734124b84563ea60f03130 Mon Sep 17 00:00:00 2001 From: Barry Morrison <689591+esacteksab@users.noreply.github.com> Date: Sun, 5 Apr 2026 11:24:23 -0600 Subject: [PATCH] chore: enhance Docker image tags to include stable version line --- .github/workflows/build.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f538cb7..a73a779 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -84,7 +84,8 @@ jobs: - name: Set tags id: tags run: | - tags="esacteksab/go:${{ matrix.go-version }}\nesacteksab/go:${{ matrix.go-version }}-${{ steps.date.outputs.date }}" + stable_line=$(echo "${{ matrix.go-version }}" | cut -d. -f1,2) + tags="esacteksab/go:${{ matrix.go-version }}\nesacteksab/go:${stable_line}\nesacteksab/go:${{ matrix.go-version }}-${{ steps.date.outputs.date }}" if [ "${{ matrix.go-version }}" = "${{ needs.get-versions.outputs.latest }}" ]; then tags="${tags}\nesacteksab/go:latest" fi