From 6f6604eed20d2f0f4a9f58ee3bbe181ba2f34045 Mon Sep 17 00:00:00 2001 From: Isshi0417 Date: Tue, 7 Jul 2026 07:08:03 +0000 Subject: [PATCH] Fix checkout container compatibility by installing Ansible --- .gitea/workflows/deploy.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index e30c5e9..a504a95 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -8,13 +8,16 @@ on: jobs: deploy-dns: runs-on: self-hosted - container: - image: docker.io/willhallonline/ansible:latest steps: - name: Checkout code uses: actions/checkout@v3 + - name: Install ansible + run: | + apt-get update + apt-get install -y ansible-core + - name: Set up SSH private key run: | mkdir -p ~/.ssh