fix ecr typo on localMode

Signed-off-by: Guillaume de Rouville <guillaume.derouville@gmail.com>
This commit is contained in:
Guillaume de Rouville 2021-09-23 00:14:00 +02:00
parent 7aed34f270
commit 240ee6b318

View File

@ -18,10 +18,10 @@ TestECR: {
}
repository: string
if localMode == null {
if localMode == false {
repository: "125635003186.dkr.ecr.\(TestConfig.awsConfig.region).amazonaws.com/dagger-ci"
}
if localMode != null {
if localMode == true {
repository: "localhost:4510/dagger-ci"
}
tag: "test-ecr-\(suffix.out)"