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