26 lines
609 B
YAML
26 lines
609 B
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
|
|
echo "${{ secrets.C3LF_INVENTORY_TESTING }}" > /etC/ansible/hosts
|
|
ssh-add - <<< "${{ secrets.C3LF_SSH_TESTING }}"
|
|
|
|
- name: Check ansible version
|
|
run: |
|
|
ansible --version
|
|
|
|
|