c3lf-system-3/.forgejo/workflows/deploy.yml

38 lines
1.1 KiB
YAML
Raw Normal View History

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
- name: Populate relevant files
run: |
2024-11-11 18:17:15 +00:00
mkdir ~/.ssh
2024-11-11 18:23:15 +00:00
echo "${{ secrets.C3LF_SSH_TESTING }}" > ~/.ssh/id_ed25519
chmod 0600 ~/.ssh/id_ed25519
ls -lah ~/.ssh
command -v ssh-agent >/dev/null || ( apt-get update -y && apt-get install openssh-client -y )
eval $(ssh-agent -s)
2024-11-11 18:17:15 +00:00
ssh-add ~/.ssh/id_ed25519
ssh-add -L
echo "andromeda.lab.or.it ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIDXPoO0PE+B9PYwbGaLo98zhbmjAkp6eBtVeZe43v/+T" >> ~/.ssh/known_hosts
mkdir /etc/ansible
echo "${{ secrets.C3LF_INVENTORY_TESTING }}" > /etc/ansible/hosts
2024-11-10 20:22:59 +00:00
- name: Check ansible version
run: |
ansible --version
2024-11-10 20:52:59 +00:00
- name: List ansible hosts
run: |
2024-11-11 17:31:22 +00:00
ansible -m ping Andromeda