mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2025-01-20 05:19:32 +02:00
13 lines
402 B
Plaintext
13 lines
402 B
Plaintext
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'
|
|
}
|
|
}
|
|
}
|
|
} |