You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if aws ecr describe-images --repository-name $REPOSITORY --image-ids imageTag=$VERSION --region $AWS_REGION 2>/dev/null; then
51
+
if aws ecr describe-images --repository-name "$REPOSITORY" --image-ids imageTag="$VERSION" --region "$AWS_REGION" 2>/dev/null; then
52
52
echo "::notice title=Qemu image::Image with tag $VERSION already exists. Skipping build. Please update the version in ansible/vars.yml if you want to upload a new image."
53
-
echo "image_exists=true" >> $GITHUB_OUTPUT
53
+
echo "image_exists=true" >> "$GITHUB_OUTPUT"
54
54
else
55
55
echo "Image with tag $VERSION does not exist. Proceeding with build."
56
-
echo "image_exists=false" >> $GITHUB_OUTPUT
56
+
echo "image_exists=false" >> "$GITHUB_OUTPUT"
57
57
fi
58
58
59
59
build:
@@ -91,16 +91,16 @@ jobs:
91
91
92
92
- name: Set PostgreSQL version environment variable
0 commit comments