mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2025-02-03 13:22:19 +02:00
14 lines
527 B
Plaintext
14 lines
527 B
Plaintext
pipeline {
|
|
agent any
|
|
stages {
|
|
stage('Prepare') {
|
|
steps {
|
|
|
|
bat encoding: 'UTF-8', script:'chcp 65001 & xcopy "docs/ru/md" "docs/docusaurus/docs" /s /e /i /y'
|
|
bat encoding: 'UTF-8', script:'chcp 65001 & cd docs/docusaurus'
|
|
bat encoding: 'UTF-8', script:'chcp 65001 & npm install'
|
|
bat encoding: 'UTF-8', script:'chcp 65001 & "C:/Program Files (x86)/Yarn/bin/yarn" build'
|
|
}
|
|
}
|
|
}
|
|
} |