Skip to content

Set the application timezone #333

Set the application timezone

Set the application timezone #333

Workflow file for this run

name: ubuntu
on:
push:
branches:
- master
pull_request:
jobs:
ubuntu:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-20.04]
rails_env: [staging, production]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Update system packages
run: sudo apt-get update -y
- name: Install OpenSSH
run: sudo apt-get install -y 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: 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=True"