Add steps block around the post-action.
This commit is contained in:
parent
0e535ee1f5
commit
b66becd978
|
@ -196,9 +196,11 @@ pipeline {
|
|||
// post-build actions
|
||||
post {
|
||||
always {
|
||||
// restore the default maven settings
|
||||
mv "${agent_root_folder}/settings.${PIPELINE_BUILD_NUMBER}" "${agent_root_folder}/settings.xml"
|
||||
echo 'The default maven settings have been restored'
|
||||
steps {
|
||||
// restore the default maven settings
|
||||
mv "${agent_root_folder}/settings.${PIPELINE_BUILD_NUMBER}" "${agent_root_folder}/settings.xml"
|
||||
echo 'The default maven settings have been restored'
|
||||
}
|
||||
}
|
||||
success {
|
||||
echo 'The pipeline worked!'
|
||||
|
|
Loading…
Reference in New Issue