Hi guys, I took some time and look into the docs b...
# prefect-cloud
b
Hi guys, I took some time and look into the docs but didn't found something for my use case. I wanted to set up a small ETL Pipeline with Prefect and Prefect cloud (nothing complex, only one flow). I wanted to deploy the flow, without running
python etl.py
first. And when I make changes to this file, the flow should be re-deployed and end the existing flow run (all via github action). I think using
python etl.py
and `prefect deployment run `xyz/xyz`` will not really help here, since the first command will run the whole thing in an interactive environment. Are there some prefect concepts which could help?