1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-03-25 21:39:21 +02:00
2024-12-31 11:13:22 +03:00

12 lines
234 B
Plaintext
Vendored

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