This commit is contained in:
병준 박 2025-04-14 14:53:09 +00:00
parent fc9bf45e70
commit fbd099fe0f
2 changed files with 2 additions and 2 deletions

View File

@ -39,7 +39,7 @@ spec:
echo "📄 Reading version from package.json..."
VERSION=$(node -p "require('./package.json').version")
TAG_FROM_PROJECT="v${VERSION}"
TAG_FROM_PROJECT="${VERSION}"
echo "🔁 Comparing Git tag and project version:"
echo " - Git ref tag: $TAG_FROM_REF"

View File

@ -45,7 +45,7 @@ spec:
echo "📄 Reading version from pyproject.toml..."
pip install --quiet tomli
VERSION=$(python3 -c 'import tomli; print(tomli.load(open("pyproject.toml", "rb"))["tool"]["poetry"]["version"])')
TAG_FROM_PROJECT="v${VERSION}"
TAG_FROM_PROJECT="${VERSION}"
echo "🔁 Comparing Git tag and project version:"
echo " - Git ref tag: $TAG_FROM_REF"