⚙️ A GitHub Action for running Ansible playbooks
Go to file
2021-02-11 17:08:44 +01:00
.github/workflows workflows: test installing bundled requirements 2020-12-09 11:57:12 +01:00
node_modules package: add yaml 2020-12-09 11:56:40 +01:00
test test/playbook: install cowsay via apt 2021-02-11 17:08:44 +01:00
action.yml action: add requirements 2020-12-06 17:05:44 +01:00
hosts rewrite in javascript 2020-05-03 11:55:12 +02:00
LICENSE init 2020-03-21 17:06:40 +01:00
main.js main: parse requirements yaml and run appropriate commands 2020-12-09 11:57:43 +01:00
package-lock.json package: add yaml 2020-12-09 11:56:40 +01:00
package.json package: add yaml 2020-12-09 11:56:40 +01:00
playbook.yml playbook: hosts=all 2020-03-22 12:47:43 +01:00
post.js post: check if file exists before unlinking 2020-12-06 16:54:45 +01:00
README.md README: clarify OS 2020-05-03 18:04:31 +02:00
requirements-bundle.yml add requirements-bundle 2020-12-09 11:56:52 +01:00
requirements.yml add example requirements file 2020-12-06 17:06:16 +01:00

Run Ansible playbook Github Action

An action that executes given Ansible playbook on selected hosts.

Should work on any OS, if ansible-playbook command is available in PATH.

Usage

- name: Run playbook
  uses: dawidd6/action-ansible-playbook@v2
  with:
    playbook: deploy.yml
    directory: ./
    key: ${{secrets.SSH_PRIVATE_KEY}}
    inventory: |
      [all]
      example.com

      [group1]
      example.com      
    vault_password: ${{secrets.VAULT_PASSWORD}}
    options: |
      --limit group1
      --extra-vars hello=there
      --verbose