From 8c70002c47b1a1babf10be3d831b64ab8321310f Mon Sep 17 00:00:00 2001 From: Reinaldy Rafli Date: Wed, 8 Oct 2025 19:21:22 +0700 Subject: [PATCH] ci: tag latest version only for calver release latest should point at CalVer release, and nightly should point at master/main branch. We're cleaning things up for self-hosted users. --- .github/workflows/release-ghcr-version-tag.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/release-ghcr-version-tag.yml b/.github/workflows/release-ghcr-version-tag.yml index fa9ea81a..8c4a58dc 100644 --- a/.github/workflows/release-ghcr-version-tag.yml +++ b/.github/workflows/release-ghcr-version-tag.yml @@ -23,3 +23,9 @@ jobs: docker buildx imagetools create --tag \ ghcr.io/${{ github.repository }}:${{ github.ref_name }} \ ghcr.io/${{ github.repository }}:${{ github.sha }} + + - name: Tag latest version + run: | + docker buildx imagetools create --tag \ + ghcr.io/${{ github.repository }}:latest \ + ghcr.io/${{ github.repository }}:${{ github.sha }}