-
Notifications
You must be signed in to change notification settings - Fork 0
46 lines (40 loc) · 1.08 KB
/
update-homelab.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
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