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

31 lines
788 B
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: |
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
2024-11-10 20:22:59 +00:00
- name: Check ansible version
run: |
ansible --version