-
Notifications
You must be signed in to change notification settings - Fork 69
30 lines (29 loc) · 944 Bytes
/
debian.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
name: debian
on:
push:
branches:
- master
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
image: ["debian:bullseye"]
rails_env: [staging, production]
container:
image: ${{ matrix.image }}
steps:
- uses: actions/checkout@v2
- name: Update system packages
run: apt-get update -y
- name: Install needed packages
run: apt-get install -y lsb-release sudo python3-pip openssh-server
- name: Install Ansible
run: pip3 install ansible
- name: Create hosts file
run: echo "localhost ansible_connection=local ansible_user=root" > hosts
- name: Generate dummy SSH key
run: mkdir ~/.ssh && ssh-keygen -t rsa -N "" -f ~/.ssh/id_rsa
- name: Run CONSUL DEMOCRACY installer
run: ansible-playbook consul.yml -i hosts --extra-vars "env=${{ matrix.rails_env }} domain=localhost errbit=False"