feat(backend): build identity в health, VERSION bake и auto stage по sha-*
CI / test (push) Successful in 28m3s

This commit is contained in:
2026-07-14 21:25:40 +03:00
parent ff4ab23264
commit 2eeda5c4c4
8 changed files with 99 additions and 31 deletions
+6
View File
@@ -54,11 +54,17 @@ jobs:
- name: Build eventhub image
run: |
set -euo pipefail
APP_VERSION="$(tr -d '[:space:]' < VERSION 2>/dev/null || echo 0.0)"
GIT_SHA="${GITHUB_SHA:0:12}"
BUILT_AT="$(date -u +%Y-%m-%dT%H:%M:%SZ)"
bash scripts/retry-docker-build.sh 5 60 -- \
docker buildx build \
--network=host \
--pull \
--file docker/Dockerfile \
--build-arg "EVENTHUB_VERSION=${APP_VERSION}" \
--build-arg "EVENTHUB_GIT_SHA=${GIT_SHA}" \
--build-arg "EVENTHUB_BUILT_AT=${BUILT_AT}" \
--tag eventhub:latest \
--load \
--provenance=false \