infra/playbooks/beta/websites/update-resume.yml

19 lines
485 B
YAML
Raw Normal View History

---
- hosts: web
remote_user: web
tasks:
2022-01-11 01:08:45 +00:00
- name: Fetch variables from role specific vars file
include_vars:
file: ../vars/main.yml
- name: Push out resume public content
copy:
src: "{{RESUME_LOCAL_PUBLIC}}/public"
dest: /var/www/
- name: Remove old content
file:
path: /var/www/resume.shockrah.xyz
state: absent
- name: Pull up resume content
command: mv /var/www/public /var/www/resume.shockrah.xyz