-
Notifications
You must be signed in to change notification settings - Fork 52
37 lines (33 loc) · 1.18 KB
/
run-playbook.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
name: GitHub Actions Testing
run-name: Test OS Deployments
on:
push:
branches: [ gh-actions ]
workflow_dispatch:
permissions:
contents: read
jobs:
Ubuntu22:
runs-on: ubuntu-22.04
steps:
- name: Check out repo code
uses: actions/checkout@v4
- name: Install ansible
run: |
sudo apt update
sudo apt install ansible
- name: Run playbook
run: |
sudo ansible-playbook -i inventory --connection local hms-docker.yml --diff --extra-vars "hms_docker_compose_container_state=absent hms_docker_container_map.transmission.enabled=no hms_docker_container_map.plex.enabled=no is_github_runner=yes"
Ubuntu20:
runs-on: ubuntu-20.04
steps:
- name: Check out repo code
uses: actions/checkout@v4
- name: Install ansible
run: |
sudo apt update
sudo apt install ansible
- name: Run playbook
run: |
sudo ansible-playbook -vvv -i inventory --connection local hms-docker.yml --diff --extra-vars "hms_docker_compose_container_state=absent hms_docker_container_map.transmission.enabled=no hms_docker_container_map.plex.enabled=no is_github_runner=yes"