woodburn/Jenkinsfile

14 lines
205 B
Plaintext
Raw Normal View History

2023-07-13 17:19:45 +10:00
pipeline {
agent any
stages {
stage('Files') {
steps {
sh returnStdout: true, script: '''for file in *
do
echo $file
done'''
}
}
}
}