c3lf-system-3/.forgejo/workflows/deploy.yml
lagertonne 7660e4e39a
All checks were successful
/ deploy (push) Successful in 2m15s
populate basic stuff which we need for ansible
2024-11-10 21:48:11 +01:00

30 lines
788 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