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

12 lines
234 B
Plaintext
Raw Normal View History

2024-09-20 13:14:15 +03:00
pipeline {
agent any
stages {
stage('Release') {
steps {
2024-09-20 20:51:38 +03:00
bat 'oscript ./ci/os/releasemaker.os'
2025-05-21 18:47:53 +03:00
archiveArtifacts artifacts: '1.24.0/*'
2024-09-20 13:14:15 +03:00
}
}
}
}