mirror of
https://github.com/EpochModTeam/Epoch.git
synced 2025-07-25 02:54:36 +00:00
10 lines
127 B
Groovy
10 lines
127 B
Groovy
pipeline {
|
|
agent any
|
|
stages {
|
|
stage('Release') {
|
|
steps {
|
|
bat 'C:/GITTEMP/release.cmd'
|
|
}
|
|
}
|
|
}
|
|
} |