1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2026-04-30 20:49:04 +02:00
Files
OpenIntegrations/ci/release
T
Anton Titovets 1327bcb5a0 Fastfix
2026-01-18 17:25:27 +03:00

19 lines
444 B
Plaintext

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