From 8cb6e809bc03c465e2653760f587cc216d1b29fb Mon Sep 17 00:00:00 2001 From: lagertonne Date: Sun, 10 Nov 2024 21:30:25 +0100 Subject: [PATCH] populate basic stuff which we need for ansible --- .forgejo/workflows/deploy.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.forgejo/workflows/deploy.yml b/.forgejo/workflows/deploy.yml index 6dedeb4..01bbd28 100644 --- a/.forgejo/workflows/deploy.yml +++ b/.forgejo/workflows/deploy.yml @@ -8,7 +8,6 @@ jobs: runs-on: docker steps: - uses: actions/checkout@v4 - - name: Install ansible run: | apt update -y @@ -16,6 +15,11 @@ jobs: python3 -m pip install ansible python3 -m pip install ansible-lint + - name: Populate relevant files + run: | + echo "${{ secrets.C3LF_INVENTORY_TESTING }}" > /etc/ansible/hosts + ssh-add - <<< "${{ secrets.C3LF_SSH_TESTING }}" + - name: Check ansible version run: | ansible --version