test-proj/.woodpecker.yml
Morgan McMillian f262b09ee1
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
try something more direct
2023-03-09 07:44:23 -08:00

21 lines
478 B
YAML

pipeline:
test:
image: debian:stable
secrets: [ ssh_key ]
environment:
- ANSIBLE_PRIVATE_KEY=$SSH_KEY
commands:
- apt-get update && apt-get install ansible -y
- ansible-playbook --user igor --inventory hosts.ini main.yml
publish:
image: plugins/ansible
pull: true
secrets: [ ssh_key ]
settings:
playbook: main.yml
inventory: hosts.ini
connection: paramiko_ssh
user: igor
private_key: $SSH_KEY