mirror of
https://github.com/EpochModTeam/Epoch.git
synced 2024-08-30 18:22:13 +00:00
15 lines
173 B
Groovy
15 lines
173 B
Groovy
pipeline {
|
|
agent {
|
|
node {
|
|
label 'testing'
|
|
}
|
|
|
|
}
|
|
stages {
|
|
stage('Release') {
|
|
steps {
|
|
bat 'C:/GITTEMP/release.cmd'
|
|
}
|
|
}
|
|
}
|
|
} |