From 99c846259fc4164a7dc03a953887aded535d7d7d Mon Sep 17 00:00:00 2001 From: jonnybravo Date: Tue, 26 Aug 2025 14:47:35 +0200 Subject: [PATCH] try --- .gitea/workflows/deploy.yml | 19 +------------------ 1 file changed, 1 insertion(+), 18 deletions(-) diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index 6d87721..26606b1 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -9,28 +9,11 @@ tags: [shell] jobs: deploy: - runs-on: ubuntu-latest + runs-on: shell steps: - name: Checkout repository uses: actions/checkout@v4 - - name: Install Ansible - run: | - python3 -m pip install --user ansible - ansible-galaxy collection install community.docker - - - name: Setup Ansible Vault - run: | - mkdir -p ~/.ansible - echo "${{ secrets.VAULT_PASSWORD }}" > ~/.ansible/.vault-pass - chmod 600 ~/.ansible/.vault-pass - - - name: Setup SSH key - run: | - mkdir -p ~/.ssh - echo "${{ secrets.ANSIBLE_PRIVATE_KEY }}" > ~/.ssh/ansible - chmod 600 ~/.ssh/ansible - - name: Run Ansible Playbook run: ansible-playbook deploy_remote.yml