From 8e1d3522961a8a6d53a5234cd162a22f1b70b419 Mon Sep 17 00:00:00 2001 From: Automation Pipeline Date: Mon, 9 Oct 2023 13:01:39 -0400 Subject: [PATCH] Whoops, wrong names --- build.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.pl b/build.pl index e114ad6..497c7a6 100755 --- a/build.pl +++ b/build.pl @@ -110,7 +110,7 @@ my $builder = IO::Async::Function->new( my $expanded_version = $version =~ s/(?5)\.(?\d+)\.(?\d+)/sprintf "%d.%03d.%03d", $+{major}, $+{minor}, $+{patch}/er; # TODO other calcs for image names - my $tags = ["$push_repo/$version-$options-$os_base$suffix$arch_suffix", "$push_repo/$expanded_version-$options-$os_base$suffix$arch_suffix"]; + my $tags = ["${push_repo}:$version-$options-$os_base$suffix$arch_suffix", "${push_repo}:$expanded_version-$options-$os_base$suffix$arch_suffix"]; my $build_date = Time::Piece::gmtime()->datetime();