url shortener #199
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 | |
inventory: | | |
[all] | |
gateway | |
configuration: | | |
[defaults] | |
host_key_checking = False | |
[ssh_connections] | |
pipelining = true | |
options: | | |
--inventory .hosts | |
--verbose | |
- name: Run homeserver playbook | |
uses: dawidd6/action-ansible-playbook@v2 | |
with: | |
playbook: homeserver.yml | |
directory: ./ | |
vault_password: ${{secrets.VAULT_PASSWORD}} | |
requirements: requirements.yml | |
inventory: | | |
[all] | |
homeserver | |
configuration: | | |
[defaults] | |
host_key_checking = False | |
ask_sudo_pass = True | |
[ssh_connections] | |
pipelining = true | |
options: | | |
--inventory .hosts | |
--verbose |