diff --git a/Jenkinsfile b/Jenkinsfile index cfcc47e..98cdf03 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -29,8 +29,8 @@ pipeline { } } steps { - sh "chmod +x model.py" - sh "python3 model.py ${params.EPOCHS}" + sh "chmod +x ./app/model.py" + sh "python3 ./app/model.py ${params.EPOCHS}" archiveArtifacts artifacts: 'powerlifting_model.h5', onlyIfSuccessful: true } }