From b4642a76c61d85b473daa8229adc71c786989a2e Mon Sep 17 00:00:00 2001 From: Lucas Conrad Date: Wed, 3 Jun 2026 17:42:40 +0200 Subject: [PATCH] git commit -m "ci: shift ansible provisioning from apt to pip to support arch python" --- .gitea/workflows/deploy.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index e76ec56..3d65a7c 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -21,7 +21,9 @@ jobs: - name: Bootstrap Ansible Runtime run: | - apt-get update && apt-get install -y ansible + apt-get update && apt-get install -y python3-pip sshpass + # Pull upstream Ansible to ensure Python 3.12+ compatibility + pip3 install ansible - name: Run Orchestration Playbook run: |