From 199980fdb9e4ac4aba18d95009755e6683adba08 Mon Sep 17 00:00:00 2001 From: Szymon Bartanowicz Date: Tue, 14 May 2024 21:50:46 +0200 Subject: [PATCH] fix --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 98cdf03..cf0634f 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -29,8 +29,8 @@ pipeline { } } steps { - sh "chmod +x ./app/model.py" - sh "python3 ./app/model.py ${params.EPOCHS}" + sh "chmod +x ./model.py" + sh "python3 ./model.py ${params.EPOCHS}" archiveArtifacts artifacts: 'powerlifting_model.h5', onlyIfSuccessful: true } }