28 lines
514 B
YAML
28 lines
514 B
YAML
import:
|
|
- recipe/laravel.php
|
|
- contrib/php-fpm.php
|
|
|
|
config:
|
|
repository: 'https://git.bh.ttx.sk/jaro/rpotisk-quasar.git'
|
|
|
|
hosts:
|
|
nuc.lan:
|
|
remote_user: deployer
|
|
branch: master
|
|
deploy_path: '/var/www/html/rpotisk2'
|
|
bin/php: /usr/bin/php82
|
|
php_fpm_version: 8.2
|
|
php_fpm_service: php82-php-fpm
|
|
after:
|
|
deploy: php-fpm:reload
|
|
|
|
tasks:
|
|
build:
|
|
- cd: "/var/www/html/rpotisk2/current"
|
|
- run: "pnpm install"
|
|
- run: "pnpm run build"
|
|
|
|
after:
|
|
deploy:failed: deploy:unlock
|
|
|