From 8fd726c5a732abaf08ed77b2a19c3c12223adcd2 Mon Sep 17 00:00:00 2001 From: Szymon Bartanowicz Date: Tue, 14 May 2024 21:46:15 +0200 Subject: [PATCH] fix --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 } }