2025-06-05 19:25:30 +03:00
|
|
|
pipeline {
|
2025-06-30 16:40:20 +03:00
|
|
|
agent {
|
|
|
|
|
label 'windows'
|
|
|
|
|
}
|
2025-06-05 19:25:30 +03:00
|
|
|
stages {
|
|
|
|
|
stage('Deploy') {
|
|
|
|
|
steps {
|
|
|
|
|
|
|
|
|
|
withCredentials([string(credentialsId: 'opm-token', variable: 'TOKEN')]) {
|
2025-06-19 11:16:02 +03:00
|
|
|
powershell encoding: 'UTF-8', script:'cd ./src/ru/OInt; opm build; opm install -f oint-1.26.0.ospx'
|
|
|
|
|
powershell encoding: 'UTF-8', script:'cd ./src/ru/OInt; opm push --token $ENV:TOKEN --channel stable --file oint-1.26.0.ospx; del oint-1.26.0.ospx'
|
2025-06-05 19:25:30 +03:00
|
|
|
powershell encoding: 'UTF-8', script:'cd ./src/ru/cli; opm build;'
|
2025-06-19 11:16:02 +03:00
|
|
|
powershell encoding: 'UTF-8', script:'cd ./src/ru/cli; opm push --token $ENV:TOKEN --channel stable --file oint-cli-1.26.0.ospx; del oint-cli-1.26.0.ospx'
|
2025-06-05 19:25:30 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|