From 32d09ef39108748381aa5661f40d742c095e2bbd Mon Sep 17 00:00:00 2001 From: Lucio Carvalho Jr <104793602+luciocarvalhojr@users.noreply.github.com> Date: Thu, 5 Feb 2026 08:23:05 -0500 Subject: [PATCH] fix: python interpreter --- .github/workflows/deploy-ssm.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/deploy-ssm.yml b/.github/workflows/deploy-ssm.yml index 86553b8..77dd1db 100644 --- a/.github/workflows/deploy-ssm.yml +++ b/.github/workflows/deploy-ssm.yml @@ -61,6 +61,7 @@ jobs: - name: Deploy Docker run: | ansible-playbook -i /ansible/inventory/ssm.ini \ + -e ansible_python_interpreter=${ANSIBLE_PYTHON_INTERPRETER} \ /ansible/playbooks/docker-deploy.yml #- name: Deploy Traefik # run: | @@ -70,5 +71,6 @@ jobs: - name: Deploy TYPO3 run: | ansible-playbook -i /ansible/inventory/ssm.ini \ + -e ansible_python_interpreter=${ANSIBLE_PYTHON_INTERPRETER} \ /ansible/playbooks/typo3-deploy.yml \ --become --become-user ${SERVER_USERNAME}