2017-12-31 09:00:54 +00:00
|
|
|
---
|
2018-01-30 23:27:38 +00:00
|
|
|
- name: Install Composer dependencies
|
|
|
|
composer:
|
|
|
|
command: install
|
|
|
|
working_dir: "{{ ansistrano_release_path.stdout }}"
|
|
|
|
|
|
|
|
- name: Generate the site once without assets
|
2018-02-13 19:31:49 +00:00
|
|
|
command: composer run prod chdir={{ ansistrano_release_path.stdout }}
|
2018-01-30 23:27:38 +00:00
|
|
|
|
2018-01-05 22:16:30 +00:00
|
|
|
- name: Install Node dependencies
|
2018-02-13 19:31:49 +00:00
|
|
|
command: yarn install chdir={{ ansistrano_release_path.stdout }}
|
2017-12-31 09:00:54 +00:00
|
|
|
|
2018-03-01 08:22:57 +00:00
|
|
|
- name: Generate assets
|
|
|
|
command: yarn run encore production chdir={{ ansistrano_release_path.stdout }}
|
2017-12-31 09:00:54 +00:00
|
|
|
|
2018-01-30 23:27:38 +00:00
|
|
|
- name: Generate the site, including assets
|
2018-02-13 19:31:49 +00:00
|
|
|
command: composer run prod chdir={{ ansistrano_release_path.stdout }}
|