From c2875f24897fc519eef7bf1bf3b24fe85db60cfc Mon Sep 17 00:00:00 2001 From: Harrison Deng Date: Mon, 18 Apr 2022 16:07:26 -0500 Subject: [PATCH] Fixed doc publishing step. --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 9721cf0..fd4309e 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -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: '']) } } }