1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2026-01-11 00:55:39 +02:00
Files
OpenIntegrations/ci/release
2025-10-27 09:48:39 +03:00

15 lines
354 B
Plaintext
Vendored

pipeline {
agent {
label 'windows'
}
stages {
stage('Release') {
steps {
powershell encoding: 'UTF-8', script:'Remove-Item -Path "./Melezh" -Recurse -Force'
bat 'oscript ./ci/os/releasemaker.os'
archiveArtifacts artifacts: '1.29.0/*'
}
}
}
}