更新 jenkinsfile
Some checks failed
BeijingMediaOfficialWebsite-ZhaoJian/BeijingMediaOfficialWebsite-ZhaoJian/pipeline/head There was a failure building this commit

This commit is contained in:
2025-12-27 01:31:16 +08:00
parent 0a3adf70b4
commit 0bc42b281a

View File

@@ -3,17 +3,17 @@ pipeline {
stages {
stage('Build') {
steps {
sh 'echo build'
cmd 'echo build'
}
}
stage('Test'){
steps {
sh 'echo test'
cmd 'echo test'
}
}
stage('Deploy') {
steps {
sh 'echo publish'
cmd 'echo publish'
}
}
}