fetch changes before checking out
Web/pipeline/head This commit looks good Details

This commit is contained in:
Ell 2021-03-17 21:14:53 +01:00
parent ccdf68e60a
commit c1d01df228
1 changed files with 2 additions and 1 deletions

3
Jenkinsfile vendored
View File

@ -7,7 +7,8 @@ pipeline {
} }
steps { steps {
sh '''cd /var/www/ellpeck sh '''cd /var/www/ellpeck
git checkout ${GIT_COMMIT}''' git fetch
git checkout ${GIT_COMMIT} -f'''
} }
} }
stage('Node') { stage('Node') {