We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Due to this line:
tags.Add($"{DockerRegistryUrl}/{tagVersion}");
Should be
The text was updated successfully, but these errors were encountered:
This is also a bug - bad name format for remote images:
Target PushImage => _ => _ .Description("Push image to docker registry") //.DependsOn(DockerLogin) .Executes(() => { var version = ReleaseNotes.Version; var tagVersion = $"{version.Version.Major}.{version.Version.Minor}.{version.Version.Build}"; var dockfiles = GetDockerProjects(); foreach (var dockfile in dockfiles) { var image = $"{Directory.GetParent(dockfile).Name}".ToLower(); var settings = new DockerImagePushSettings() .SetName(string.IsNullOrWhiteSpace(DockerRegistryUrl) ? $"{image}:{tagVersion}" : $"{DockerRegistryUrl}/{image}:{tagVersion}"); DockerTasks.DockerImagePush(settings); } });
Sorry, something went wrong.
No branches or pull requests
Due to this line:
Should be
The text was updated successfully, but these errors were encountered: