1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2026-05-06 21:04:14 +02:00
Files
OpenIntegrations/ci/release
T
2024-12-21 12:22:14 +03:00

12 lines
234 B
Plaintext

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