1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-12-13 23:36:04 +02:00
Files
OpenIntegrations/ci/release

15 lines
368 B
Plaintext
Raw Normal View History

2025-06-05 19:25:30 +03:00
pipeline {
agent {
label 'windows'
}
2025-06-05 19:25:30 +03:00
stages {
stage('Release') {
steps {
2025-06-14 22:55:40 +03:00
powershell encoding: 'UTF-8', script:'Remove-Item -Path "./Melezh" -Recurse -Force'
2025-06-05 19:25:30 +03:00
bat 'oscript ./ci/os/releasemaker.os'
2025-06-19 11:16:02 +03:00
archiveArtifacts artifacts: '1.26.0/*'
2025-06-05 19:25:30 +03:00
}
}
}
2024-09-20 13:14:15 +03:00
}