chore(release): push git refs after successful container build

This commit is contained in:
2026-03-19 19:52:17 +01:00
parent 15e4a5434e
commit e44caccb3c

View File

@@ -69,18 +69,23 @@ sed -i "s/\"version\": \"[^\"]*\"/\"version\": \"${FRONT_VERSION}\"/" "${FRONT_P
echo "frontend/package.json version updated → ${FRONT_VERSION}" echo "frontend/package.json version updated → ${FRONT_VERSION}"
# --------------------------------------------------------------------------- # ---------------------------------------------------------------------------
# Git tag # Git tag (local only; push after container build)
# --------------------------------------------------------------------------- # ---------------------------------------------------------------------------
cd "${SCRIPT_DIR}/.." cd "${SCRIPT_DIR}/.."
git add Docker/VERSION frontend/package.json git add Docker/VERSION frontend/package.json
git commit -m "chore: release ${NEW_TAG}" git commit -m "chore: release ${NEW_TAG}"
git tag -a "${NEW_TAG}" -m "Release ${NEW_TAG}" git tag -a "${NEW_TAG}" -m "Release ${NEW_TAG}"
git push origin HEAD echo "Local git commit + tag ${NEW_TAG} created."
git push origin "${NEW_TAG}"
echo "Git tag ${NEW_TAG} created and pushed."
# --------------------------------------------------------------------------- # ---------------------------------------------------------------------------
# Push # Push containers
# --------------------------------------------------------------------------- # ---------------------------------------------------------------------------
bash "${SCRIPT_DIR}/push.sh" "${NEW_TAG}" bash "${SCRIPT_DIR}/push.sh" "${NEW_TAG}"
bash "${SCRIPT_DIR}/push.sh" bash "${SCRIPT_DIR}/push.sh"
# ---------------------------------------------------------------------------
# Push git commits & tag
# ---------------------------------------------------------------------------
git push origin HEAD
git push origin "${NEW_TAG}"
echo "Git commit and tag ${NEW_TAG} pushed."