1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-11-23 22:05:15 +02:00
Files
OpenIntegrations/ci/opm_push

20 lines
813 B
Plaintext
Raw Normal View History

2025-07-06 01:01:25 +03:00
pipeline {
agent {
label 'windows'
}
stages {
stage('Deploy') {
steps {
withCredentials([string(credentialsId: 'opm-token', variable: 'TOKEN')]) {
2025-11-04 10:14:31 +03:00
powershell encoding: 'UTF-8', script:'cd ./src/ru/OInt; opm build; opm install -f oint-1.30.0.ospx'
powershell encoding: 'UTF-8', script:'cd ./src/ru/OInt; opm push --token $ENV:TOKEN --channel stable --file oint-1.30.0.ospx; del oint-1.30.0.ospx'
2025-07-06 01:01:25 +03:00
powershell encoding: 'UTF-8', script:'cd ./src/ru/cli; opm build;'
2025-11-04 10:14:31 +03:00
powershell encoding: 'UTF-8', script:'cd ./src/ru/cli; opm push --token $ENV:TOKEN --channel stable --file oint-cli-1.30.0.ospx; del oint-cli-1.30.0.ospx'
2025-07-06 01:01:25 +03:00
}
}
}
}
}