c3lf-system-3/.forgejo/workflows/deploy.yml
lagertonne 226bfc3f2c
Some checks failed
/ deploy (push) Has been cancelled
Fix ssh key permissions
2024-11-11 19:21:54 +01:00

36 lines
No EOL
1.1 KiB
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: |
mkdir ~/.ssh
command -v ssh-agent >/dev/null || ( apt-get update -y && apt-get install openssh-client -y )
eval $(ssh-agent -s)
echo "${{ secrets.C3LF_SSH_TESTING }}" > ~/.ssh/id_ed25519 && chmod 0600 ~/.ssh/id_ed25519
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
- name: Check ansible version
run: |
ansible --version
- name: List ansible hosts
run: |
ansible -m ping Andromeda