stop ansibl.cfg prompting for password #164
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Update Homelab Servers | |
on: | |
push: | |
branches: | |
- main | |
- overhaul | |
workflow_dispatch: | |
jobs: | |
deploy: | |
runs-on: "self-hosted" | |
steps: | |
- uses: actions/checkout@v4 | |
- name: install ansible | |
run: sudo apt-get install -y ansible | |
- name: Run gateway playbook | |
uses: dawidd6/action-ansible-playbook@v2 | |
with: | |
playbook: gateway.yml | |
directory: ./ | |
vault_password: ${{secrets.VAULT_PASSWORD}} | |
requirements: requirements.yml | |
configuration: | | |
[ssh_connections] | |
pipelining = true | |
options: | | |
--inventory gateway | |
--verbose | |
- name: Run homeserver playbook | |
uses: dawidd6/action-ansible-playbook@v2 | |
with: | |
playbook: homeserver.yml | |
directory: ./ | |
vault_password: ${{secrets.VAULT_PASSWORD}} | |
requirements: requirements.yml | |
configuration: | | |
[ssh_connections] | |
pipelining = true | |
options: | | |
--inventory homeserver | |
--verbose |