mirror of
https://github.com/EpochModTeam/Epoch.git
synced 2024-08-30 18:22:13 +00:00
14 lines
184 B
Groovy
14 lines
184 B
Groovy
pipeline {
|
|
agent none
|
|
stages {
|
|
stage('checkout') {
|
|
steps {
|
|
node {
|
|
checkout scm
|
|
fileExists 'README.md'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|