1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-03-17 21:08:03 +02:00
2025-02-21 22:24:51 +03:00

12 lines
234 B
Plaintext
Vendored

pipeline {
agent any
stages {
stage('Release') {
steps {
bat 'oscript ./ci/os/releasemaker.os'
archiveArtifacts artifacts: '1.20.0/*'
}
}
}
}