1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-03-19 21:17:55 +02:00
OpenIntegrations/ci/docs_test_ru

13 lines
485 B
Plaintext
Raw Normal View History

2024-09-22 14:24:59 +03:00
pipeline {
agent any
stages {
stage('Prepare') {
steps {
2024-09-22 14:38:07 +03:00
bat encoding: 'UTF-8', script:'chcp 65001 & xcopy "docs/ru/md" "docs/docusaurus/docs" /s /e /i /y'
2024-09-22 14:39:48 +03:00
bat encoding: 'UTF-8', script:'chcp 65001 & cd docs/docusaurus & npm install'
bat encoding: 'UTF-8', script:'chcp 65001 & cd docs/docusaurus & "C:/Program Files (x86)/Yarn/bin/yarn" build'
2024-09-22 14:24:59 +03:00
}
}
}
}