From 49b330a498062b74023247616bc6e2a8a28699f1 Mon Sep 17 00:00:00 2001 From: Sebastian Rust Date: Fri, 6 Feb 2026 10:06:34 +0100 Subject: [PATCH] fix(cicd): pip install packages correctly --- .gitea/workflows/build.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index fe47f32..1c7673a 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -21,7 +21,9 @@ jobs: - name: Install dependencies run: | - pip install ansible ansible-bundler + python3 -m venv .venv + .venv/bin/pip install ansible ansible-bundler + echo "$PWD/.venv/bin" >> $GITHUB_PATH - name: Verify playbook syntax run: |