Merge pull request '[♻️] Jenkins 동작 로직 수정 7' (#14) from seonkyu.kim/AcaMate_Web:main into debug
All checks were successful
AcaMate_FO/pipeline/head This commit looks good

Reviewed-on: https://git.ipstein.myds.me/AcaMate/AcaMate_Web/pulls/14
This commit is contained in:
김선규 2025-05-22 00:26:39 +00:00
commit e61ae09f67

4
Jenkinsfile vendored
View File

@ -12,10 +12,10 @@ pipeline {
sh """ sh """
echo 'Clearing Front directory' echo 'Clearing Front directory'
docker run --rm -v /volume1/AcaMate/PROJECT/Application/Front:/front alpine \ docker run --rm -v /volume1/AcaMate/PROJECT/Application/Front:/front alpine \
find /aca/front/ -mindepth 1 -maxdepth 1 \\ sh -c "find /front -mindepth 1 -maxdepth 1 \\
! -name 'privacy' \\ ! -name 'privacy' \\
! -name 'publish' \\ ! -name 'publish' \\
-exec rm -rf {} + -exec rm -rf {} +"
echo 'Clean complete' echo 'Clean complete'
""" """
} }