update v0.0.7-r6
Some checks failed
Build And Test / build-and-push (push) Failing after 6s

This commit is contained in:
2025-10-22 18:33:45 +09:00
parent d834a15e90
commit a43623dce7
2 changed files with 13 additions and 2 deletions

View File

@ -76,7 +76,18 @@ jobs:
VERSION="${{ steps.img-ver.outputs.content }}"
VERSION_SAFE=$(echo "$VERSION" | tr '.' 'd')
yq e -i ".spec.template.spec.containers[0].name |= \"msa-django-ansible-${VERSION_SAFE}\"" patch-deployment.yaml
yq e -i '
.spec.template.spec.containers =
(.spec.template.spec.containers
| map(
if .name then
.name = "msa-django-ansible-'${VERSION_SAFE}'"
else
.
end
)
)
' patch-deployment.yaml
echo "✅ Final patch-deployment.yaml content:"
cat patch-deployment.yaml

View File

@ -1 +1 @@
v0.0.7-r5
v0.0.7-r6