mirror of
https://github.com/dawidd6/action-ansible-playbook.git
synced 2024-11-22 07:26:25 +00:00
README: update
This commit is contained in:
parent
11bc4204d5
commit
b2946c375b
1 changed files with 16 additions and 0 deletions
16
README.md
16
README.md
|
@ -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
|
||||
```
|
||||
|
|
Loading…
Reference in a new issue