update v0.0.6
All checks were successful
Build And Test / build-and-push (push) Successful in 3m2s

This commit is contained in:
2025-10-22 16:26:03 +09:00
parent 766a885171
commit a10de7927c
2 changed files with 5 additions and 2 deletions

View File

@ -75,7 +75,10 @@ jobs:
chmod +x /usr/local/bin/yq
echo "✅ Updating container name in patch-deployment.yaml..."
yq e -i '.spec.template.spec.containers[0].name = "msa-django-ansible-${{ steps.img-ver.outputs.content }}"' patch-deployment.yaml
VERSION="${{ steps.img-ver.outputs.content }}"
VERSION_SAFE=$(echo "$VERSION" | tr '.' '-')
yq e -i ".spec.template.spec.containers[0].name = \"msa-django-ansible-${VERSION_SAFE}\"" patch-deployment.yaml
echo "✅ Final patch-deployment.yaml content:"
cat patch-deployment.yaml

View File

@ -1 +1 @@
v0.0.5
v0.0.6