fix: user proper image_tag, if set

This commit is contained in:
Andras Bacsai 2024-02-08 15:22:07 +01:00
parent 3d2444ab2e
commit 8a50b063d4

View File

@ -618,6 +618,9 @@ private function generate_image_names()
}
} else {
$this->dockerImageTag = str($this->commit)->substr(0, 128);
if ($this->application->docker_registry_image_tag) {
$this->dockerImageTag = $this->application->docker_registry_image_tag;
}
if ($this->application->docker_registry_image_name) {
$this->build_image_name = Str::lower("{$this->application->docker_registry_image_name}:{$this->dockerImageTag}-build");
$this->production_image_name = Str::lower("{$this->application->docker_registry_image_name}:{$this->dockerImageTag}");