【项目定制配置文件】jenkins自动部署开发服务器

pull/554/head
痴货 2024-09-16 07:49:01 +08:00
parent c23b2201cd
commit d613af350f
1 changed files with 1 additions and 1 deletions

2
Jenkinsfile vendored
View File

@ -13,7 +13,7 @@ pipeline {
stage('拉取代码') { stage('拉取代码') {
steps { steps {
echo "${ref}分支开始构建" echo "${ref}分支开始构建"
checkout scmGit(branches: [[name: "${ref}"]], extensions: [], userRemoteConfigs: [[credentialsId: 'gitee', url: 'https://gitee.com/jianghewangluo/specialty.git']]) checkout scmGit(branches: [[name: "${ref}"]], extensions: [], userRemoteConfigs: [[credentialsId: 'gitee', url: 'https://gitee.com/jianghewangluo/specialty-ui-admin-vue3.git']])
} }
} }