From e9f0847b1e9f6c5c5589c27e9e8ddcfbe36bcc75 Mon Sep 17 00:00:00 2001 From: Michael Schiemer Date: Fri, 31 Oct 2025 21:50:37 +0100 Subject: [PATCH] fix: use php-ci runner for deploy job instead of ubuntu-latest - Changed deploy job to use php-ci runner which has Ansible pre-installed - Removed redundant Ansible installation step - Fixes 'ansible: command not found' error in Gitea Actions workflow --- .gitea/workflows/production-deploy.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.gitea/workflows/production-deploy.yml b/.gitea/workflows/production-deploy.yml index d82413a5..c16a678a 100644 --- a/.gitea/workflows/production-deploy.yml +++ b/.gitea/workflows/production-deploy.yml @@ -637,7 +637,6 @@ jobs: chmod 600 ~/.ssh/production ssh-keyscan -H ${{ env.DEPLOYMENT_HOST }} >> ~/.ssh/known_hosts - # Ansible is pre-installed in php-ci image - name: Verify Ansible installation run: ansible --version