Im trying to get steps in pipeline to fecth variable defined on folderProperties like below using withFolderProperties but failing . Is it there any special syntax im missing?
trying the code below
pipeline { agent { label 'dasm' } stages { stage('TRUNCATE TABLE'){ steps{ withFolderProperties { bat 'psql --host=host --dbname=dbname --port=5444 --username=user -w -c "TRUNCATE TABLE ${env.myTable};"'} } }
2.1m questions
2.1m answers
60 comments
57.0k users