2024-11-10 20:19:00 +00:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- feature/forgejo-actions
|
|
|
|
- testing
|
2024-11-06 21:26:48 +00:00
|
|
|
jobs:
|
2024-11-10 20:22:59 +00:00
|
|
|
deploy:
|
2024-11-06 21:26:48 +00:00
|
|
|
runs-on: docker
|
|
|
|
steps:
|
2024-11-10 20:19:00 +00:00
|
|
|
- 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
|
2024-11-06 21:26:48 +00:00
|
|
|
|
2024-11-10 20:30:25 +00:00
|
|
|
- name: Populate relevant files
|
|
|
|
echo "${{ secrets.C3LF_INVENTORY_TESTING }}" > /etC/ansible/hosts
|
|
|
|
ssh-add - <<< "${{ secrets.C3LF_SSH_TESTING }}"
|
|
|
|
|
2024-11-10 20:22:59 +00:00
|
|
|
- name: Check ansible version
|
|
|
|
run: |
|
|
|
|
ansible --version
|
|
|
|
|
|
|
|
|