Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/docker-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,12 @@ jobs:
# for backend services). Dockerfiles that don't declare
# `ARG APP_VERSION` silently ignore it.
--build-arg "APP_VERSION=${version}"
# Stamp the git short-SHA too. Unlike the per-repo `0.0.X`
# version (a build-ID), the commit is identical iff the code is
# identical — the reliable "is this the same build?" signal for
# services on parallel lanes (e.g. trader-tools stable vs dev).
# Dockerfiles that don't declare `ARG GIT_SHA` silently ignore it.
--build-arg "GIT_SHA=${SHORT_SHA}"
)
if [ -n "${TARGET}" ]; then
buildx_args+=(--target "${TARGET}")
Expand Down