mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2024-11-21 17:56:56 +02:00
12 lines
234 B
Plaintext
12 lines
234 B
Plaintext
pipeline {
|
|
agent any
|
|
stages {
|
|
|
|
stage('Release') {
|
|
steps {
|
|
bat 'oscript ./ci/os/releasemaker.os'
|
|
archiveArtifacts artifacts: '1.16.0/*'
|
|
}
|
|
}
|
|
}
|
|
} |