mirror of
https://github.com/EpochModTeam/Epoch.git
synced 2024-08-30 18:22:13 +00:00
16 lines
248 B
Groovy
16 lines
248 B
Groovy
pipeline {
|
|
agent any
|
|
stages {
|
|
stage('checkout') {
|
|
steps {
|
|
fileExists 'DOESNOTEXIST.exe'
|
|
fileExists 'README.md'
|
|
}
|
|
}
|
|
stage('Release') {
|
|
steps {
|
|
bat 'C:/GITTEMP/release.cmd'
|
|
}
|
|
}
|
|
}
|
|
} |