diff --git a/Jenkinsfile b/Jenkinsfile index 322f66b..de83f9c 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -30,7 +30,7 @@ pipeline { checkout([$class: 'GitSCM', branches: [[name: '*/master']], extensions: [], userRemoteConfigs: [[url: 'https://git.wmi.amu.edu.pl/s444386/ium_444386']]]) sh "chmod u+x ./dataset_download.sh" sh "KAGGLE_USERNAME=${KAGGLE_USERNAME} KAGGLE_KEY=${KAGGLE_KEY} CUTOFF=${CUTOFF} ./dataset_download.sh" - archiveArtifacts 'data.txt' + archiveArtifacts 'data.csv' } } } diff --git a/dataset_download.sh b/dataset_download.sh index bfad018..0b03293 100644 --- a/dataset_download.sh +++ b/dataset_download.sh @@ -2,5 +2,5 @@ kaggle datasets download -d tamber/steam-video-games unzip -o steam-video-games.zip > data.txt -head -n $CUTOFF steam-200k.csv >> data.txt +head -n $CUTOFF steam-200k.csv >> data.csv