mirror of
https://github.com/EpochModTeam/Epoch.git
synced 2024-08-30 18:22:13 +00:00
19 lines
375 B
Groovy
19 lines
375 B
Groovy
pipeline {
|
|
agent any
|
|
stages {
|
|
stage('checkout') {
|
|
steps {
|
|
node(label: 'testing') {
|
|
git(url: 'https://github.com/EpochModTeam/Epoch.git', branch: 'experimental', credentialsId: 'github')
|
|
readFile 'README.md'
|
|
}
|
|
|
|
}
|
|
}
|
|
stage('Release') {
|
|
steps {
|
|
bat 'C:/GITTEMP/release.cmd'
|
|
}
|
|
}
|
|
}
|
|
} |