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