Sha256: bc36e89b406b0484136b8e3e140fa5bde1023e1bfac90f84001bf139524684d5
Contents?: true
Size: 883 Bytes
Versions: 3
Compression:
Stored size: 883 Bytes
Contents
- name: clone the FE app when: fe_app_repo is defined remote_user: "{{ deployer_user.name }}" git: dest={{ fe_app_path }} repo={{ fe_app_repo }} version={{ fe_app_branch }} accept_hostkey=true force=yes tags: [fe_deploy] - name: NPM install when: fe_app_repo is defined remote_user: "{{ deployer_user.name }}" command: bash -lc command: chdir={{ fe_app_path }} bash -lc 'test -e package.json && npm install' tags: [fe_deploy] - name: Bower install when: fe_app_repo is defined remote_user: "{{ deployer_user.name }}" command: bash -lc command: chdir={{ fe_app_path }} bash -lc 'test -e bower.json && bower install' tags: [fe_deploy] - name: Build FE when: fe_app_repo is defined remote_user: "{{ deployer_user.name }}" command: chdir={{ fe_app_path }} bash -lc '{{ fe_build_command }}' tags: [fe_deploy]
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
taperole-1.3.2 | roles/frontend_deploy/tasks/main.yml |
taperole-1.3.1 | roles/frontend_deploy/tasks/main.yml |
taperole-1.3.0 | roles/frontend_deploy/tasks/main.yml |