Skip to content

Commit 0879109

Browse files
committed
nit: use single image_url var instead of 3 vars in release wokrflow
Signed-off-by: Michael Zeevi <[email protected]>
1 parent f0cd7b0 commit 0879109

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ jobs:
179179
echo "Checking availability of: ${image_url}"
180180
181181
while [ $retry_count -lt $MAX_RETRIES ]; do
182-
if docker manifest inspect "${DOCKER_REGISTRY}/${image}:${component_tag}" > /dev/null 2>&1; then
182+
if docker manifest inspect "${image_url}" > /dev/null 2>&1; then
183183
echo "Image available: ${image_url}"
184184
break
185185
else

0 commit comments

Comments
 (0)