ci(docker): publish sortable <timestamp>-<sha> tag for Flux image automation

Both image workflows now emit a <timestamp>-<sha> tag on main pushes
alongside the existing sha-<short>/latest tags. Flux's ImagePolicy needs a
sortable tag to pick the newest build; latest is mutable and sha-<short>
has no ordering, so neither could drive auto-deploy. Same scheme as the
Talos devbox image.

Tag is stamped at build time (UTC); re-running a stale build would sort
newest, so prefer reverting over re-running. api and control build via
separate workflows/policies and can skew if one fails.
This commit is contained in:
2026-07-18 15:24:28 -04:00
parent 8f6bfa3e61
commit 04597a9ed6
2 changed files with 30 additions and 0 deletions
+18
View File
@@ -41,6 +41,23 @@ jobs:
# Tags: branch name on branch pushes, semver on v* tags, short SHA always, # Tags: branch name on branch pushes, semver on v* tags, short SHA always,
# `latest` only on the default branch. metadata-action lowercases the repo # `latest` only on the default branch. metadata-action lowercases the repo
# name (GHCR requires lowercase). # name (GHCR requires lowercase).
#
# The <timestamp>-<sha> tag is what Flux's ImagePolicy sorts on to pick the
# newest build (see Talos: apps/handler/image-automation/imagepolicy.yaml).
# It must be monotonic and sortable — `sha-<short>` has no ordering and
# `latest` is mutable, so neither can drive image automation. UTC keeps it
# monotonic across DST. Same scheme as apps/devbox.
#
# This image is built by a workflow SEPARATE from docker.yml and resolved by
# a separate ImagePolicy. If this build fails while docker.yml succeeds, the
# api container rolls and control stays behind, with both policies green —
# the handler README's health check compares the two resolved tags for this
# reason.
#
# Caveat: this is BUILD time, not commit time. Re-running an old commit's
# build publishes <now>-<oldsha>, which sorts newest and would deploy older
# code. Accepted (the sha in the tag makes it obvious after the fact) — but
# prefer pushing a revert over re-running a stale build.
- name: Docker metadata - name: Docker metadata
id: meta id: meta
uses: docker/metadata-action@v5 uses: docker/metadata-action@v5
@@ -52,6 +69,7 @@ jobs:
type=semver,pattern={{version}} type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}} type=semver,pattern={{major}}.{{minor}}
type=sha type=sha
type=raw,value={{date 'YYYYMMDDHHmmss'}}-{{sha}},enable={{is_default_branch}}
type=raw,value=latest,enable={{is_default_branch}} type=raw,value=latest,enable={{is_default_branch}}
- name: Build and push - name: Build and push
+12
View File
@@ -38,6 +38,17 @@ jobs:
# Tags: branch name on branch pushes, semver on v* tags, short SHA always, # Tags: branch name on branch pushes, semver on v* tags, short SHA always,
# `latest` only on the default branch. metadata-action lowercases the repo # `latest` only on the default branch. metadata-action lowercases the repo
# name (GHCR requires lowercase). # name (GHCR requires lowercase).
#
# The <timestamp>-<sha> tag is what Flux's ImagePolicy sorts on to pick the
# newest build (see Talos: apps/handler/image-automation/imagepolicy.yaml).
# It must be monotonic and sortable — `sha-<short>` has no ordering and
# `latest` is mutable, so neither can drive image automation. UTC keeps it
# monotonic across DST. Same scheme as apps/devbox.
#
# Caveat: this is BUILD time, not commit time. Re-running an old commit's
# build publishes <now>-<oldsha>, which sorts newest and would deploy older
# code. Accepted (the sha in the tag makes it obvious after the fact) — but
# prefer pushing a revert over re-running a stale build.
- name: Docker metadata - name: Docker metadata
id: meta id: meta
uses: docker/metadata-action@v5 uses: docker/metadata-action@v5
@@ -49,6 +60,7 @@ jobs:
type=semver,pattern={{version}} type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}} type=semver,pattern={{major}}.{{minor}}
type=sha type=sha
type=raw,value={{date 'YYYYMMDDHHmmss'}}-{{sha}},enable={{is_default_branch}}
type=raw,value=latest,enable={{is_default_branch}} type=raw,value=latest,enable={{is_default_branch}}
- name: Build and push - name: Build and push