<@ULVA73B9P> how can I make that command `prefect ...
# ask-marvin
p
@Marvin how can I make that command
prefect deploy -n wsf_prod_mongo_migrator_flow/*
deploy all the deployments that match this without asking?
m
To deploy multiple deployments matching a pattern without interactive prompts, use the following flag: --all Here is an example command to deploy all deployments that match a pattern:
Copy code
prefect deploy -n wsf_prod_mongo_migrator_flow/* --all
This will perform the deployment without needing confirmation for each matching deployment. For further details, check the Prefect Documentation on deployments.
n
I dont think this will work today, but this is an interesting feature request, i.e.
--all
works but no pattern matching
feel free to open an enhancement issue on this!
p
@Nate Actually it worked for some of my flow, but in other there is causing problems. you are right. Which may be the way to do it no? so I can run it on a CI/CD pipeline