1
0
Fork 0
mirror of https://github.com/dawidd6/action-ansible-playbook.git synced 2024-11-22 15:32:18 +00:00
action-ansible-playbook/test/playbook.yml

13 lines
245 B
YAML
Raw Permalink Normal View History

2020-05-14 18:19:22 +00:00
- name: Test Action
hosts: all
tasks:
2021-02-11 16:28:46 +00:00
- name: Copy file
copy:
src: requirements.yml
dest: /tmp/requirements.yml
2021-02-11 16:08:44 +00:00
- name: Install cowsay
become: yes
apt:
name: cowsay
update_cache: yes