2025-07-06 01:01:25 +03:00
|
|
|
pipeline {
|
2025-09-22 19:09:16 +03:00
|
|
|
agent {
|
|
|
|
|
label 'windows'
|
|
|
|
|
}
|
2025-07-06 01:01:25 +03:00
|
|
|
stages {
|
|
|
|
|
stage('Deploy') {
|
|
|
|
|
steps {
|
2025-09-22 19:09:16 +03:00
|
|
|
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 & oscript ./ci/os/docs_pagetranslate.os'
|
|
|
|
|
bat encoding: 'UTF-8', script:'chcp 65001 & xcopy "docs/en/md" "docs/docusaurus/docs" /s /e /i /y'
|
|
|
|
|
bat encoding: 'UTF-8', script:'chcp 65001 & cd docs/docusaurus & npm install'
|
2025-09-25 22:05:30 +03:00
|
|
|
bat encoding: 'UTF-8', script:'chcp 65001 & cd docs/docusaurus & npm run build'
|
2025-07-06 01:01:25 +03:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2024-09-25 15:29:54 +03:00
|
|
|
}
|