Migrate from vuepress to vitepress for docs site

This commit is contained in:
Jamie Curnow
2024-05-10 23:00:27 +10:00
parent 79cd0c5294
commit 47dddc548b
39 changed files with 1098 additions and 4686 deletions

4
Jenkinsfile vendored
View File

@ -92,8 +92,8 @@ pipeline {
sh 'yarn install'
sh 'yarn build'
}
dir(path: 'docs/.vuepress/dist') {
sh 'tar -czf ../../docs.tgz *'
dir(path: 'docs/dist') {
sh 'tar -czf ../docs.tgz *'
}
archiveArtifacts(artifacts: 'docs/docs.tgz', allowEmptyArchive: false)
}