diff --git a/Jenkinsfile3 b/Jenkinsfile3 index cc47ff1..ea1ffe1 100644 --- a/Jenkinsfile3 +++ b/Jenkinsfile3 @@ -8,7 +8,13 @@ pipeline { copyArtifacts projectName: 's444417-create-dataset' sh 'ls -la' sh 'python3 ./src/trainScript.py 6' - archiveArtifacts 'saved_model/MyModel_tf/*' + } + } + stage('Archive') { + steps { + dir('saved_model') { + archiveArtifacts artifacts: '**' + } } } stage('Starting eval job') {