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

29 lines
653 B
YAML
Raw Normal View History

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