populate basic stuff which we need for ansible
All checks were successful
/ deploy (push) Successful in 2m15s
All checks were successful
/ deploy (push) Successful in 2m15s
This commit is contained in:
parent
33de223a5c
commit
7660e4e39a
1 changed files with 8 additions and 1 deletions
|
@ -8,7 +8,6 @@ jobs:
|
|||
runs-on: docker
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Install ansible
|
||||
run: |
|
||||
apt update -y
|
||||
|
@ -16,6 +15,14 @@ jobs:
|
|||
python3 -m pip install ansible
|
||||
python3 -m pip install ansible-lint
|
||||
|
||||
- name: Populate relevant files
|
||||
run: |
|
||||
command -v ssh-agent >/dev/null || ( apt-get update -y && apt-get install openssh-client -y )
|
||||
eval $(ssh-agent -s)
|
||||
ssh-add - <<< "${{ secrets.C3LF_SSH_TESTING }}"
|
||||
mkdir /etc/ansible
|
||||
echo "${{ secrets.C3LF_INVENTORY_TESTING }}" > /etc/ansible/hosts
|
||||
|
||||
- name: Check ansible version
|
||||
run: |
|
||||
ansible --version
|
||||
|
|
Loading…
Reference in a new issue