README: update

This commit is contained in:
Dawid Dziurla 2021-07-26 18:44:13 +02:00 committed by GitHub
parent ad014132a3
commit aefa1cb082
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -10,17 +10,26 @@ Should work on any OS, if `ansible-playbook` command is available in `PATH`.
- name: Run playbook - name: Run playbook
uses: dawidd6/action-ansible-playbook@v2 uses: dawidd6/action-ansible-playbook@v2
with: with:
# Required, playbook filepath
playbook: deploy.yml playbook: deploy.yml
# Optional, directory where playbooks live
directory: ./ directory: ./
# Optional, SSH private key
key: ${{secrets.SSH_PRIVATE_KEY}} key: ${{secrets.SSH_PRIVATE_KEY}}
# Optional, literal inventory file contents
inventory: | inventory: |
[all] [all]
example.com example.com
[group1] [group1]
example.com example.com
# Optional, encrypted vault password
vault_password: ${{secrets.VAULT_PASSWORD}} vault_password: ${{secrets.VAULT_PASSWORD}}
# Optional, galaxy requirements filepath
requirements: galaxy-requirements.yml
# Optional, additional flags to pass to ansible-playbook
options: | options: |
--inventory .hosts
--limit group1 --limit group1
--extra-vars hello=there --extra-vars hello=there
--verbose --verbose