Skip to content

Commit 95f85fb

Browse files
SecAI-Hubclaude
andcommitted
Fix ISO build: use :latest tag (BlueBuild doesn't tag :vX.Y.Z)
BlueBuild tags images as :latest on main pushes, not :vX.Y.Z. The release tag and main HEAD are the same commit, so :latest is the correct image for ISO generation. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 639e540 commit 95f85fb

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/release.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,9 @@ jobs:
167167
arch: x86_64
168168
image_name: secai_os
169169
image_repo: ghcr.io/secai-hub
170-
image_tag: ${{ github.ref_name }}
170+
# Use :latest since BlueBuild tags main pushes as :latest, not :vX.Y.Z.
171+
# The release tag and main HEAD point to the same commit.
172+
image_tag: latest
171173
version: 42
172174
variant: Silverblue
173175
iso_name: secai-os-${{ github.ref_name }}-x86_64.iso

0 commit comments

Comments
 (0)