1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2024-12-27 02:43:54 +02:00
OpenIntegrations/ci/docs_test_ru

21 lines
1.3 KiB
Plaintext
Raw Normal View History

2024-09-22 13:24:59 +02:00
pipeline {
agent any
stages {
2024-09-22 21:38:49 +02:00
stage('Deploy') {
2024-09-22 13:24:59 +02:00
steps {
2024-09-24 11:45:18 +02:00
catchError(buildResult: 'FAILURE', stageResult: 'FAILURE') {
2024-09-24 12:08:39 +02:00
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 & npm install'
bat encoding: 'UTF-8', script:'chcp 65001 & cd docs/docusaurus & "C:/Program Files (x86)/Yarn/bin/yarn" build'
withCredentials([string(credentialsId: 'neocities-test', variable: 'TOKEN')]) {
2024-09-24 12:45:37 +02:00
powershell encoding: 'UTF-8', script:'oint neocities СинхронизироватьКаталоги --token $ENV:TOKEN --local "C:/ProgramData/Jenkins/.jenkins/workspace/Docs deploy (Test RU)/docs/docusaurus/build"'
2024-09-24 12:08:39 +02:00
}
2024-09-24 11:45:18 +02:00
}
2024-09-24 12:08:39 +02:00
bat encoding: 'UTF-8', script:'chcp 65001 & rmdir /s /q "C:/ProgramData/Jenkins/.jenkins/workspace/Docs deploy (Test RU)/docs/docusaurus/build"'
bat encoding: 'UTF-8', script:'chcp 65001 & rmdir /s /q "C:/ProgramData/Jenkins/.jenkins/workspace/Docs deploy (Test RU)/docs/docusaurus/node_modules"'
2024-09-22 13:24:59 +02:00
}
}
}
}