<@ULVA73B9P> how to set pull setps to none with ju...
# marvin-in-the-wild
p
@Marvin how to set pull setps to none with just CLI args when running prefect deploy?
m
To set the pull steps to none when running
prefect deploy
from the CLI, you need to specify that there are no steps for the pull section in your
prefect.yaml
file. Unfortunately, the exact CLI argument to do this directly doesn't seem to be documented explicitly. However, you can manually set the
pull
section to an empty list in your
prefect.yaml
file like this:
Copy code
yaml
pull: []
If you want to proceed without modifying the yaml file, you can use interactive prompts provided by
prefect deploy
to skip any pull steps. For more details, check the documentation: - Prefect 2.x: Prefect Deploy Guide - Prefect 3.x: Prefect YAML Infrastructure Concepts Let me know if you need further assistance!