fix: typo

This commit is contained in:
devthejo 2023-12-03 12:50:21 +01:00
parent 111af7cd36
commit 5d2b6193b2
Signed by: devthejo
GPG key ID: C04215C627711F5C

View file

@ -39,11 +39,11 @@ runs:
fi
echo "Using tag: $TAG"
values_files="envs/$CD_ENV/$CD_APP.yaml"
yq e '.image.tag = "'$TAG'"' -i $values_file
values_file="envs/$CD_ENV/$CD_APP.yaml"
yq e '.image.tag = "'$TAG'"' -i "$values_file"
git config user.name "forgejo-actions"
git config user.email "bot@devthefuture.org"
git add $values_files
git add "$values_file"
if [ "$CD_COMMIT" != "false" ]; then
git commit --allow-empty -m "chore: set $CD_ENV/$CD_APP image.tag=$TAG"