You've already forked OpenIntegrations
mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2025-11-29 22:27:42 +02:00
15 lines
354 B
Plaintext
Vendored
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.28.0/*'
|
|
}
|
|
}
|
|
}
|
|
} |