1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2024-11-24 08:52:18 +02:00
OpenIntegrations/ci/docs_test_ru
2024-09-24 10:56:25 +03:00

17 lines
904 B
Plaintext

pipeline {
agent any
stages {
stage('Deploy') {
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 & npm install'
bat encoding: 'UTF-8', script:'chcp 65001 & cd docs/docusaurus & "C:/Program Files (x86)/Yarn/bin/yarn" build'
bat encoding: 'UTF-8', script:'chcp 65001 & cd docs/docusaurus/build & neocel --t=%GPGKEY% --yes'
withCredentials([string(credentialsId: 'neocities-test', variable: 'TOKEN')]) {
powershell encoding: 'UTF-8', script:'oint --token $TOKEN --local "C:\ProgramData\Jenkins\.jenkins\workspace\Docs deploy (Test RU)\docs\docusaurus\build"'
}
}
}
}
}