APP_VERSION aus Build-Arg statt Hardcoding im Code
Version wird jetzt beim Docker-Build per --build-arg injiziert. Release-Workflow leitet sie aus dem Tag-Namen ab, Dev-Workflow nutzt den Short-SHA. Verhindert Version-Mismatch bei Releases. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
co-authored by
Claude Opus 4.6
parent
50bb72803f
commit
6d07b12015
@@ -27,7 +27,10 @@ jobs:
|
||||
|
||||
- name: Build and push amd64 image
|
||||
run: |
|
||||
SHORT_SHA="${GITHUB_SHA:0:7}"
|
||||
|
||||
docker build --pull --platform linux/amd64 \
|
||||
--build-arg APP_VERSION="dev-${SHORT_SHA}" \
|
||||
-t "${IMAGE}:dev-amd64" \
|
||||
-t "${IMAGE}:dev-${GITHUB_SHA}-amd64" \
|
||||
.
|
||||
@@ -47,7 +50,10 @@ jobs:
|
||||
|
||||
- name: Build and push arm64 image
|
||||
run: |
|
||||
SHORT_SHA="${GITHUB_SHA:0:7}"
|
||||
|
||||
docker build --pull --platform linux/arm64 \
|
||||
--build-arg APP_VERSION="dev-${SHORT_SHA}" \
|
||||
-t "${IMAGE}:dev-arm64" \
|
||||
-t "${IMAGE}:dev-${GITHUB_SHA}-arm64" \
|
||||
.
|
||||
|
||||
Reference in New Issue
Block a user