1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-10-08 22:51:57 +02:00
Files
OpenIntegrations/ci/docs_test_ru
Anton Titovets 487421716a Fastfix
2025-09-25 22:05:30 +03:00

19 lines
724 B
Plaintext
Vendored

pipeline {
agent {
label 'windows'
}
stages {
stage('Deploy') {
steps {
catchError() {
bat encoding: 'UTF-8', script:'chcp 65001 & rmdir /s /q "docs/docusaurus/build"'
bat encoding: 'UTF-8', script:'chcp 65001 & rmdir /s /q "docs/docusaurus/node_modules"'
}
bat encoding: 'UTF-8', script:'chcp 65001 & xcopy "docs/ru/md" "docs/docusaurus/docs" /s /e /i /y'
bat encoding: 'UTF-8', script:'chcp 65001 & cd docs/docusaurus & npm install'
bat encoding: 'UTF-8', script:'chcp 65001 & cd docs/docusaurus & npm run build'
}
}
}
}