From 505175c965ba75bc6b830da821bcea8651762d12 Mon Sep 17 00:00:00 2001 From: Ditmar Visser Date: Wed, 11 Jun 2025 12:41:16 +0000 Subject: [PATCH] fix: install ansible --- .gitea/workflows/provision_configure.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/provision_configure.yaml b/.gitea/workflows/provision_configure.yaml index 7faef5c..a829586 100644 --- a/.gitea/workflows/provision_configure.yaml +++ b/.gitea/workflows/provision_configure.yaml @@ -64,7 +64,7 @@ jobs: # Ansible - name: Set up SSH run: | - mkdir -p ~/.ssh + # mkdir -p ~/.ssh # printf "%s" "${{ secrets.AZURE_SSH_PRIVATE_KEY }}" > ~/.ssh/azure # chmod 600 ~/.ssh/azure mkdir -p ~/.ssh @@ -74,8 +74,8 @@ jobs: - name: Install Ansible shell: bash run: | - sudo apt update - sudo apt install -y ansible + apt update + apt install -y ansible - name: Run Ansible Playbook env: