1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2026-05-16 09:38:28 +02:00
Files
OpenIntegrations/ci/pipelines/release.jenkinsfile
T
2026-05-03 15:47:15 +03:00

21 lines
557 B
Plaintext

pipeline {
agent {
label 'windows'
}
stages {
stage('Release') {
steps {
powershell encoding: 'UTF-8', script:'Remove-Item -Path "./Melezh" -Recurse -Force'
withCredentials([string(credentialsId: 'gpgkey', variable: 'GPGKEY')]) {
bat 'oscript ./ci/os/internal/Classes/ReleaseFactory.os'
}
}
}
stage('Archive') {
steps {
archiveArtifacts artifacts: '2.1.0/*'
}
}
}
}