1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2026-06-20 09:19:27 +02:00
Files
OpenIntegrations/ci/release
T
2025-06-19 11:16:02 +03:00

13 lines
350 B
Plaintext
Vendored

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