Skip to content
This repository was archived by the owner on Mar 27, 2023. It is now read-only.

Commit b951971

Browse files
committed
redeploy cdk code
1 parent b753a25 commit b951971

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

awscdk/awscdk/cdk_app_root.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,12 +55,12 @@ def __init__(
5555
self.static_site_stack = StaticSiteStack(self, "StaticSiteStack")
5656
self.static_site_bucket = self.static_site_stack.static_site_bucket
5757

58-
if os.path.isdir("./quasar/dist/pwa"):
58+
if os.path.isdir("../quasar/dist/pwa"):
5959
s3_deployment.BucketDeployment(
6060
self,
6161
"BucketDeployment",
6262
destination_bucket=self.static_site_bucket,
63-
sources=[s3_deployment.Source.asset("./quasar/dist/pwa")],
63+
sources=[s3_deployment.Source.asset("../quasar/dist/pwa")],
6464
distribution=self.cloudfront.distribution,
6565
)
6666

gitlab-ci/aws/cdk.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ variables:
2525
after_script:
2626
- echo "Build Complete"
2727

28-
.cdk deploy:
28+
cdk deploy:
2929
image: docker:19.03.1
3030
services:
3131
- docker:19.03.5-dind

0 commit comments

Comments
 (0)