c3lf-system-3/.forgejo/workflows/deploy.yml
lagertonne 4e49aea403
Some checks failed
/ deploy (push) Failing after 2m6s
populate basic stuff which we need for ansible
2024-11-10 21:34:19 +01:00

28 lines
653 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
run: |
mkdir /etc/ansible
echo "${{ secrets.C3LF_INVENTORY_TESTING }}" > /etC/ansible/hosts
ssh-add - <<< "${{ secrets.C3LF_SSH_TESTING }}"
- name: Check ansible version
run: |
ansible --version