1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-01-04 03:48:40 +02:00
OpenIntegrations/ci/release

12 lines
234 B
Plaintext
Raw Normal View History

2024-09-20 12:14:15 +02:00
pipeline {
agent any
stages {
stage('Release') {
steps {
2024-09-20 19:51:38 +02:00
bat 'oscript ./ci/os/releasemaker.os'
archiveArtifacts artifacts: '1.17.0/*'
2024-09-20 12:14:15 +02:00
}
}
}
}