pipelines zip and gdrive upload

updated
This commit is contained in:
dzaitsev
2025-05-07 20:06:08 +03:00
parent dd5521dc3b
commit 46ec7fddc4
+2 -2
View File
@@ -64,7 +64,7 @@ pipeline {
stage('Upload If Not Exists & Always Remove Local') { stage('Upload If Not Exists & Always Remove Local') {
when { when {
expression { expression {
return env.LATEST_ZIP_FILENAME != 'none' return env.LATEST_ZIP_FILENAME != 'none' && env.LATEST_ZIP_FILENAME != ''
} }
} }
steps { steps {
@@ -97,7 +97,7 @@ pipeline {
stage('Cleanup Older Files on Google Drive') { stage('Cleanup Older Files on Google Drive') {
when { when {
expression { expression {
return env.LATEST_ZIP_FILENAME != 'none' return env.LATEST_ZIP_FILENAME != 'none' && env.LATEST_ZIP_FILENAME != ''
} }
} }
steps { steps {