You've already forked OpenIntegrations
mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2026-05-02 20:52:28 +02:00
18 lines
344 B
Plaintext
18 lines
344 B
Plaintext
pipeline {
|
|
agent {
|
|
label 'windows'
|
|
}
|
|
stages {
|
|
stage('Release') {
|
|
steps {
|
|
bat 'oscript ./ci/os/internal/Classes/ReleaseFactory.os'
|
|
}
|
|
}
|
|
|
|
stage('Archive') {
|
|
steps {
|
|
archiveArtifacts artifacts: '1.32.0/*'
|
|
}
|
|
}
|
|
}
|
|
} |