[♻️] Jenkins 동작 로직 수정 7 #14

Merged
seonkyu.kim merged 1 commits from seonkyu.kim/AcaMate_Web:main into debug 2025-05-22 00:26:40 +00:00

4
Jenkinsfile vendored
View File

@ -12,10 +12,10 @@ pipeline {
sh """
echo 'Clearing Front directory'
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 'publish' \\
-exec rm -rf {} +
-exec rm -rf {} +"
echo 'Clean complete'
"""
}