woodburn/Jenkinsfile
Nathan Woodburn 7e03a31eae
All checks were successful
Woodburn Main/woodburn/pipeline/head This commit looks good
cd: Added init file
2023-07-13 17:22:06 +10:00

14 lines
205 B
Groovy

pipeline {
agent any
stages {
stage('Files') {
steps {
sh returnStdout: true, script: '''for file in *
do
echo $file
done'''
}
}
}
}