Fixed doc publishing step.

This commit is contained in:
Harrison Deng 2022-04-18 16:07:26 -05:00
parent ac5d83125b
commit c2875f2489

2
Jenkinsfile vendored
View File

@ -33,7 +33,7 @@ pipeline {
nodejs('NodeJS (17.4.0)') {
sh "npm run docs"
}
publishHTML([allowMissing: false, alwaysLinkToLastBuild: false, keepAll: false, reportDir: 'audioshowkit/docs', reportFiles: 'index.html', reportName: 'AudioShowKit JSDocs', reportTitles: ''])
publishHTML([allowMissing: false, alwaysLinkToLastBuild: false, keepAll: false, reportDir: './docs', reportFiles: 'index.html', reportName: 'AudioShowKit JSDocs', reportTitles: ''])
}
}
}