Usando script propio de build

This commit is contained in:
2026-03-20 13:17:34 +01:00
parent 73fbdd8048
commit 39fca1024c
2 changed files with 8 additions and 1 deletions

2
build.develop.sh Executable file
View File

@@ -0,0 +1,2 @@
#/bin/bash
docker compose -f deployment/develop/docker/docker-compose.yaml --project-directory ./ build

View File

@@ -73,7 +73,12 @@ pipeline {
),
sshTransfer(
cleanRemote: false,
execCommand: "sh $APP_REMOTE_PATH/rebuild.sh"
remoteDirectory: "$APP_REMOTE_PATH",
sourceFiles: "build.develop.sh",
),
sshTransfer(
cleanRemote: false,
execCommand: "sh $APP_REMOTE_PATH/build.develop.sh"
)
]
)