1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2026-05-04 20:54:02 +02:00
Files
OpenIntegrations/ci/release
T
Anton Titovets 5b554e703c Update release
2025-06-14 22:55:40 +03:00

13 lines
350 B
Plaintext
Vendored

pipeline {
agent any
stages {
stage('Release') {
steps {
powershell encoding: 'UTF-8', script:'Remove-Item -Path "./Melezh" -Recurse -Force'
bat 'oscript ./ci/os/releasemaker.os'
archiveArtifacts artifacts: '1.25.0/*'
}
}
}
}