Skip to content
This repository was archived by the owner on Dec 7, 2023. It is now read-only.

Commit 213ee94

Browse files
author
Geri Jennings
authored
Merge pull request #275 from cyberark/fix-image-push
Update check for whether to publish Dockerhub image
2 parents d927d37 + d19a880 commit 213ee94

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

push-image

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ git_description=$(git describe)
2222
# only when tag matches the VERSION, push VERSION and latest releases
2323
# and x and x.y releases
2424
#Ex: v5-6.2.1
25-
if [ "$git_description" = "v${VERSION_TAG}" ]; then
25+
if [ "$git_description" = "v${VERSION}" ]; then
2626
echo "Revision $git_description matches version $VERSION exactly. Pushing to Dockerhub..."
2727

2828
for tag in "${TAGS[@]}"; do

0 commit comments

Comments
 (0)