1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-03-17 21:08:03 +02:00

12 lines
234 B
Plaintext
Raw Permalink 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-02-21 22:24:51 +03:00
archiveArtifacts artifacts: '1.20.0/*'
2024-09-20 13:14:15 +03:00
}
}
}
}