Skip to content

Commit 4ebd6c7

Browse files
Merge pull request #5 from craftech-io/chore/refactor-registry-ci
Chore: refactor registry ci
2 parents b2f0722 + ecadaff commit 4ebd6c7

File tree

8 files changed

+4
-3
lines changed

8 files changed

+4
-3
lines changed

β€Ž.github/workflows/push-to-registry.ymlβ€Ž

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ on:
33
push:
44
tags:
55
- v*
6+
67
env:
78
REGISTRY_HOST: https://registry.craftech.io
89

β€Žexamples/acm/main.tfβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ provider "aws" {
1111
# ACM
1212
# ---------------------------------------------------------------------------------------------------------------------
1313
module "acm" {
14-
source = "../.."
14+
source = "../../modules/acm/"
1515

1616
create_certificate = var.create_certificate
1717
domain_name = var.domain_name

β€Žexamples/complete-dns-validation/main.tfβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ resource "aws_route53_zone" "this" {
2121
}
2222

2323
module "acm" {
24-
source = "../../"
24+
source = "../../modules/acm/"
2525

2626
domain_name = local.domain_name
2727
zone_id = coalescelist(data.aws_route53_zone.this.*.zone_id, aws_route53_zone.this.*.zone_id)[0]

β€Žexamples/complete-email-validation/main.tfβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ resource "aws_route53_zone" "this" {
33
}
44

55
module "acm" {
6-
source = "../../"
6+
source = "../../modules/acm/"
77

88
domain_name = var.domain_name
99
zone_id = aws_route53_zone.this.zone_id
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
Β (0)