always assign to "latest" tag

This commit is contained in:
Eric S. Londres 2022-08-17 22:42:09 -04:00
parent 9a9ed67c94
commit 75eb4d2ff8
Signed by: slondr
GPG Key ID: A2D25B4D5CB970E4
1 changed files with 3 additions and 2 deletions

View File

@ -11,6 +11,7 @@ source "docker" "egalaxyd" {
]
}
variable "REGISTRY_SERVER" {
type = string
description = "The OCI registry to upload the container image to"
@ -38,14 +39,14 @@ build {
# Base tag which looks clean
post-processor "docker-tag" {
repository = "egalaxyd"
tags = ["0.4.4"]
tags = ["latest"]
}
# Tag specifically for exporting to registry
post-processors {
post-processor "docker-tag" {
repository = "tildegit.org/slondr/egalaxyd"
tags = ["0.4.4"]
tags = ["latest"]
}
post-processor "docker-push" {