1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-01-20 05:19:32 +02:00
OpenIntegrations/ci/docs_test_ru

21 lines
1.3 KiB
Plaintext
Raw Normal View History

2024-09-22 14:24:59 +03:00
pipeline {
agent any
stages {
2024-09-22 22:38:49 +03:00
stage('Deploy') {
2024-09-22 14:24:59 +03:00
steps {
2024-09-24 12:45:18 +03:00
catchError(buildResult: 'FAILURE', stageResult: 'FAILURE') {
2024-09-24 13:08:39 +03: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 13:45:37 +03: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 13:08:39 +03:00
}
2024-09-24 12:45:18 +03:00
}
2024-09-24 13:08:39 +03: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 14:24:59 +03:00
}
}
}
}