From 22067fd1629c3c35bc345c1b609a99fcdb55a422 Mon Sep 17 00:00:00 2001 From: Sven Geboers Date: Sat, 28 Mar 2026 21:02:01 +0100 Subject: [PATCH] fix(ansible): use full path for uv binary in shell tasks --- ansible/deploy.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ansible/deploy.yaml b/ansible/deploy.yaml index cfd1134..20fdf3b 100644 --- a/ansible/deploy.yaml +++ b/ansible/deploy.yaml @@ -33,7 +33,7 @@ - name: sync dependencies with uv ansible.builtin.shell: - cmd: uv sync + cmd: /home/webapps/.local/bin/uv sync chdir: ~/motief - name: stop existing streamlit process @@ -42,5 +42,5 @@ - name: start streamlit ansible.builtin.shell: - cmd: nohup uv run streamlit run Home.py --server.port=8501 --server.address=0.0.0.0 & + cmd: nohup /home/webapps/.local/bin/uv run streamlit run Home.py --server.port=8501 --server.address=0.0.0.0 & chdir: ~/motief