Rename directory

This commit is contained in:
Oliver Davies 2017-11-02 22:21:02 +00:00
parent 11eeedf96a
commit d189e938c6
3 changed files with 2 additions and 2 deletions

View file

@ -0,0 +1,20 @@
---
- name: Install node dependencies
command: yarn install
args:
chdir: "{{ ansistrano_release_path.stdout }}"
- name: Build assets
command: npm run prod
args:
chdir: "{{ ansistrano_release_path.stdout }}"
- name: Install Composer dependencies
composer:
command: install
working_dir: "{{ ansistrano_release_path.stdout }}"
- name: Generate the site
command: composer run prod
args:
chdir: "{{ ansistrano_release_path.stdout }}"

View file

@ -0,0 +1,3 @@
---
- name: Reload nginx
service: name=nginx state=reloaded