Compare commits

...

2 Commits

Author SHA1 Message Date
e61ae09f67 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
2025-05-22 00:26:39 +00:00
1f3b6b3217 [♻️] Jenkins 동작 로직 수정 7 2025-05-22 09:26:03 +09:00

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'
""" """
} }