1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-12-03 22:39:12 +02:00
Files
OpenIntegrations/ci/release
2025-05-21 18:47:53 +03:00

12 lines
234 B
Plaintext
Vendored

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