Sha256: 24c79d21b6b42460c5ac27464a1a3945181fd76717ad8fb5fb5cdcc932a70a42
Contents?: true
Size: 713 Bytes
Versions: 5
Compression:
Stored size: 713 Bytes
Contents
# - name: rsync the FE app # remote_user: "{{ deployer_user.name }}" # synchronize: # src={{ fe_app_local_path }}/ # dest={{ fe_app_path }} # tags: [fe_deploy] # register: fe_app_checkout # when: fe_app_local_path is defined - name: clone the FE app 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 command: bash -lc command: chdir={{ fe_app_path }} bash -lc 'npm install' tags: [fe_deploy] - name: Build FE command: bash -lc command: chdir={{ fe_app_path }} bash -lc 'gulp build' tags: [fe_deploy]
Version data entries
5 entries across 5 versions & 1 rubygems