20 lines
320 B
YAML
20 lines
320 B
YAML
import:
|
|
- recipe/laravel.php
|
|
|
|
config:
|
|
repository: 'https://git.bh.ttx.sk/jaro/ikea/'
|
|
|
|
hosts:
|
|
web01.ttx.sk:
|
|
remote_user: git
|
|
deploy_path: '/var/www/html/ikea'
|
|
|
|
tasks:
|
|
build:
|
|
- cd: "/var/www/html/ikea/current"
|
|
- run: "npm install"
|
|
- run: "npm run build"
|
|
|
|
after:
|
|
deploy:failed: deploy:unlock
|