1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-01-18 05:18:06 +02:00
2024-11-15 13:12:57 +03:00

12 lines
234 B
Plaintext

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