Replies: 1 comment
-
I'm not entirely certain what your requirements are. If changes are being made to your app, you want your app to synthesize again, or else your |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I use GitHub Actions to deploy my stack based on folder changes, for example if
app
changes, runcdk deploy app
.This works great, however, since
cdk.out
doesn't exist (As it isn't part of the Git repo), it has to build all of the other stacks before deploying the stack I needed (i.e. any stacks withSource.asset
that have build configs).I can cache the
cdk.out
directory, however since it doesn't get pruned, it would continue to expand indefinitely.Is there a better way around this?
Beta Was this translation helpful? Give feedback.
All reactions