1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-12-24 00:01:24 +02:00
Files
OpenIntegrations/ci/release
2025-07-06 01:01:25 +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.26.0/*'
}
}
}
}