is there a way to do a deploy to CloudFormation an...
# help
s
is there a way to do a deploy to CloudFormation and skip the code build step? e.g. if the code has already all been built, but CF failed due to a permission issue or something. then you can just fix the permission and redeploy with the same code
a
you could use the underlying cdk deploy command to do this. I think it will be
npx sst cdk deploy "*"
. This will deploy everything.
s
thanks! I’ll try that
@Ashishkumar Pandey unfortunately, that goes through all the code building processes the same way
sst deploy
does
a
You can replace the * with a stack name.
That should only trigger building for all dependent functions.