IUM_06 - add datasets as artifacts in models/Jenkinsfile

This commit is contained in:
Paweł Łączkowski 2024-04-19 11:21:51 +02:00
parent 5b6eadb3ce
commit 7a18968311
1 changed files with 1 additions and 1 deletions

2
models/Jenkinsfile vendored
View File

@ -50,7 +50,7 @@ pipeline {
steps {
sh "chmod +x ./create_model.py"
sh "python3 ./create_model.py"
archiveArtifacts artifacts: 'models/model.pth', onlyIfSuccessful: true
archiveArtifacts artifacts: 'models/model.pth, datasets/*', onlyIfSuccessful: true
}
}
}