Hi everyone, Is it possible to specify the profile you want to use in `Deployment.build_from_flow` s...
t
Hi everyone, Is it possible to specify the profile you want to use in
Deployment.build_from_flow
similar to what you do when using the CLI
prefect --profile "profile1" deployment build ....
1
z
You could probably use
with prefect.context.use_profile("profile1"): …
🙌 2