mirror of
https://github.com/docker/bake-action.git
synced 2025-07-14 12:41:53 +02:00
16 lines
212 B
HCL
16 lines
212 B
HCL
group "default" {
|
|
targets = ["t3"]
|
|
}
|
|
|
|
target "t3" {
|
|
name = "${item.tag}"
|
|
matrix = {
|
|
item = t3
|
|
}
|
|
args = {
|
|
VERSION = "${item.version}"
|
|
DUMMY_ARG = "${item.arg}"
|
|
}
|
|
tags = ["${item.tag}"]
|
|
}
|