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

20 lines
823 B
Plaintext
Raw Normal View History

2025-07-06 01:01:25 +03:00
pipeline {
agent {
label 'windows'
}
2025-07-06 01:01:25 +03:00
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 & 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
}