1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-12-01 22:29:52 +02:00
Files
OpenIntegrations/ci/release

15 lines
354 B
Plaintext
Raw Normal View History

2025-07-06 01:01:25 +03:00
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'
2025-11-04 10:14:31 +03:00
archiveArtifacts artifacts: '1.30.0/*'
2025-07-06 01:01:25 +03:00
}
}
}
2024-09-20 13:14:15 +03:00
}