Skip to content
This repository was archived by the owner on Jun 22, 2024. It is now read-only.

Commit f639da0

Browse files
Fixing bug in variable name causing browser tagging with browser version and webdriver and selenium versions to fail.
1 parent d384913 commit f639da0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tag_and_push_multi-arch_browser_images.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@ chromium)
5555
for chrome_tag in "${CHROME_TAGS[@]}"
5656
do
5757
if [ "${PUSH_IMAGE}" = true ]; then
58-
sh tag-and-push-multi-arch-image.sh $VERSION $BUILD_DATE $NAME node-chromium ${chrome_tag}
59-
sh tag-and-push-multi-arch-image.sh $VERSION $BUILD_DATE $NAME standalone-chromium ${chrome_tag}
58+
sh tag-and-push-multi-arch-image.sh $VERSION $BUILD_DATE $NAMESPACE node-chromium ${chrome_tag}
59+
sh tag-and-push-multi-arch-image.sh $VERSION $BUILD_DATE $NAMESPACE standalone-chromium ${chrome_tag}
6060
fi
6161
done
6262

@@ -96,8 +96,8 @@ firefox)
9696
for firefox_tag in "${FIREFOX_TAGS[@]}"
9797
do
9898
if [ "${PUSH_IMAGE}" = true ]; then
99-
sh tag-and-push-multi-arch-image.sh $VERSION $BUILD_DATE $NAME node-firefox ${firefox_tag}
100-
sh tag-and-push-multi-arch-image.sh $VERSION $BUILD_DATE $NAME standalone-firefox ${firefox_tag}
99+
sh tag-and-push-multi-arch-image.sh $VERSION $BUILD_DATE $NAMESPACE node-firefox ${firefox_tag}
100+
sh tag-and-push-multi-arch-image.sh $VERSION $BUILD_DATE $NAMESPACE standalone-firefox ${firefox_tag}
101101
fi
102102
done
103103

0 commit comments

Comments
 (0)