Skip to content

Commit bda9098

Browse files
authored
ci: fix bucket prefix packaged-template.yaml target (#78)
1 parent 76614c7 commit bda9098

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

templates_apprunner/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@ lint:
1818

1919

2020
packaged-template.yaml:
21-
aws s3 rm s3://$(S3_BUCKET)/$(S3_PREFIX) --recursive
21+
aws s3 rm s3://$(S3_BUCKET)/apprunner/$(S3_PREFIX) --recursive
2222
aws cloudformation package \
2323
--region $(S3_REGION) \
2424
--template-file SecureForCloudAppRunner.yaml \
2525
--s3-bucket $(S3_BUCKET) \
26-
--s3-prefix $(S3_PREFIX) \
26+
--s3-prefix apprunner/$(S3_PREFIX) \
2727
--force-upload \
2828
--output-template-file packaged-template.yaml
2929

templates_ecs/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ lint:
1616
cfn-lint *.yaml
1717

1818
packaged-template.yaml:
19-
aws s3 rm s3://$(S3_BUCKET)/$(S3_PREFIX) --recursive
19+
aws s3 rm s3://$(S3_BUCKET)/ecs/$(S3_PREFIX) --recursive
2020
aws cloudformation package \
2121
--region $(S3_REGION) \
2222
--template-file CloudVision.yaml \
2323
--s3-bucket $(S3_BUCKET) \
24-
--s3-prefix $(S3_PREFIX) \
24+
--s3-prefix ecs/$(S3_PREFIX) \
2525
--force-upload \
2626
--output-template-file packaged-template.yaml
2727

0 commit comments

Comments
 (0)