Fix the tagging of images in publish script
diff --git a/publish.sh b/publish.sh
index 6b08b85..882de6c 100755
--- a/publish.sh
+++ b/publish.sh
@@ -106,7 +106,7 @@
echo "Images ${source} [$digest_source] and ${target} [$digest_target] are already the same, not updating tags"
else
echo "Creating tag ${target} pointing to ${source}"
- docker-tag "jenkinsci/jenkins:${source}" "jenkinsci/jenkins:${target}"
+ docker-tag "${source}" "${target}"
if [ ! "$dry_run" = true ]; then
docker push "jenkinsci/jenkins:${source}"
fi