c3lf-system-3/.forgejo/workflows/deploy.yml
lagertonne 3756c53bd1
Some checks failed
/ deploy (push) Has been cancelled
list current hosts in inventory
2024-11-10 21:52:59 +01:00

32 lines
No EOL
869 B
YAML

on:
push:
branches:
- feature/forgejo-actions
- testing
jobs:
deploy:
runs-on: docker
steps:
- uses: actions/checkout@v4
- name: Install ansible
run: |
apt update -y
apt install python3-pip -y
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
- name: List ansible hosts
run: |
ansible-inventory --list