Should I be able to deploy a single stack by name ...
# help
s
Should I be able to deploy a single stack by name using functional stacks? For example, if I have
app.stack(StackA).stack(StackB).stack(StackC)
, should I be able to deploy stackB to a
shared
stage?
Copy code
yarn run sst deploy stackB --stage=shared
Based on the error message I'm receiving, I cannot:
Copy code
Stack shared-my-service-stackname is not found in your app.
I know I can deploy the entire app to the
shared
stage, but that's not what I want here
t
Yeah it should work but can you try matching casing exactly?
s
That worked, thank you! 🤘