728x90
반응형
stage('npm build'){
sh 'ls -alrt'
dir('frontend') {
git url: "https://gitlab주소/repository/frontend", branch: "master", credentialsId: 'git계정'
sh 'ls -alrt'
sh 'rm -rf build/*'
echo 'npm build start..'
sh 'npm install'
sh 'npm run build'
echo 'npm build end ..'
sh 'cp -R build/* src/main/resources/static'
dir('src/main/resources/static') {
sh 'ls -alrt'
}
}
}
jenkinsfile에서 giturl, branch, credentialsId 를 써줘야 한다.
아니면 인증 에러가 난다.
728x90
반응형
'git' 카테고리의 다른 글
intellij gitlab 기존소스 연동하는방법 (1) | 2021.05.04 |
---|---|
git 사용방법 (with sourcetree) (0) | 2021.01.06 |
git submodule 삭제 (0) | 2020.12.22 |
git submodule update already exists and is not an empty directory. (0) | 2020.12.10 |
git submodule 이용해서 springboot + react 합치기 (0) | 2020.12.09 |