mcmillian.us/main.yaml
Morgan McMillian 73b8d8b47e
All checks were successful
dreamfall/mcmillian.us/pipeline/head This commit looks good
move deployment to new server
2023-03-05 10:29:52 -08:00

20 lines
411 B
YAML

---
- name: deploy mcmillian.dev static site
hosts: web
vars:
html_location: /var/www/html/mcmillian.us
tasks:
- name: ping host
ansible.builtin.ping:
- name: setup location
ansible.builtin.file:
path: "{{ html_location }}"
state: directory
- name: sync html directory
ansible.posix.synchronize:
src: html/
dest: "{{ html_location }}/"