Merge pull request #1007 from grouville/Fix/ecr

Fix ECR typo on localMode leading to CI Failure
This commit is contained in:
Andrea Luzzardi 2021-09-22 16:28:10 -07:00 committed by GitHub
commit 541c8c078f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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)"