You've already forked OpenIntegrations
mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2025-10-08 22:51:57 +02:00
20 lines
813 B
Plaintext
Vendored
20 lines
813 B
Plaintext
Vendored
pipeline {
|
|
agent {
|
|
label 'windows'
|
|
}
|
|
stages {
|
|
stage('Deploy') {
|
|
steps {
|
|
|
|
withCredentials([string(credentialsId: 'opm-token', variable: 'TOKEN')]) {
|
|
powershell encoding: 'UTF-8', script:'cd ./src/ru/OInt; opm build; opm install -f oint-1.27.0.ospx'
|
|
powershell encoding: 'UTF-8', script:'cd ./src/ru/OInt; opm push --token $ENV:TOKEN --channel stable --file oint-1.27.0.ospx; del oint-1.27.0.ospx'
|
|
powershell encoding: 'UTF-8', script:'cd ./src/ru/cli; opm build;'
|
|
powershell encoding: 'UTF-8', script:'cd ./src/ru/cli; opm push --token $ENV:TOKEN --channel stable --file oint-cli-1.27.0.ospx; del oint-cli-1.27.0.ospx'
|
|
}
|
|
|
|
}
|
|
}
|
|
}
|
|
}
|