You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 30, 2023. It is now read-only.
I'd like to do a diff on a few different stacks but it is unnecessarily time consuming to run the diff (or any cdk action really) as multiple jobs, when cdk itself supports running multiple at once eg: cdk diff web api
It would be nice if the cdk_stack attribute would support multiple values. EG:
- name: cdk diff
uses: youyo/aws-cdk-github-actions@v2
with:
cdk_subcommand: "diff"
cdk_stack:
- web
- api
The text was updated successfully, but these errors were encountered:
I managed to deploy multiple stacks with the solution from #48.
In your example you just would need to change the cdk_stack line to: cdk_stack: "@(web|api)"
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I'd like to do a diff on a few different stacks but it is unnecessarily time consuming to run the diff (or any cdk action really) as multiple jobs, when cdk itself supports running multiple at once eg:
cdk diff web api
It would be nice if the
cdk_stack
attribute would support multiple values. EG:The text was updated successfully, but these errors were encountered: