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.31.0/*' } } } }