1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2026-05-02 20:52:28 +02:00
Files
OpenIntegrations/ci/release
T

18 lines
344 B
Plaintext

pipeline {
agent {
label 'windows'
}
stages {
stage('Release') {
steps {
bat 'oscript ./ci/os/internal/Classes/ReleaseFactory.os'
}
}
stage('Archive') {
steps {
archiveArtifacts artifacts: '1.32.0/*'
}
}
}
}