1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2026-05-22 10:05:29 +02:00

Create docs_test_ru

This commit is contained in:
Anton
2024-09-22 14:24:59 +03:00
parent 31835fc746
commit e0178afed8
+13
View File
@@ -0,0 +1,13 @@
pipeline {
agent any
stages {
stage('Prepare') {
steps {
bat encoding: 'UTF-8', script:'xcopy /s /e ./docs/ru/md ./docs/docusaurus/docs'
bat encoding: 'UTF-8', script:'cd ./docs/docusaurus'
bat encoding: 'UTF-8', script:'"C:/Program Files (x86)/Yarn/bin" build'
}
}
}
}