README: update

This commit is contained in:
Dawid Dziurla 2020-03-22 13:01:58 +01:00
parent 11bc4204d5
commit b2946c375b
No known key found for this signature in database
GPG Key ID: 7B6D8368172E9B0B

View File

@ -1,2 +1,18 @@
# Run Ansible playbook Github Action
An action that executes given Ansible playbook on selected hosts.
## Usage
```yaml
- name: Run playbook
uses: dawidd6/action-ansible-playbook
with:
playbook: deploy.yml
key: ${{secrets.SSH_PRIVATE_KEY}}
options: |
--inventory hosts
--limit dev
--extra-vars hello=there
--verbose
```