1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-11-29 22:27:42 +02:00
Files
OpenIntegrations/ci/release
2025-11-04 10:14:31 +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.30.0/*'
}
}
}
}