diff --git a/scripts/gh-pages.ts b/scripts/gh-pages.ts index da8b260..dd10478 100644 --- a/scripts/gh-pages.ts +++ b/scripts/gh-pages.ts @@ -6,6 +6,8 @@ const {version} = require('../package.json') const ghPages = require('gh-pages') const path = require('path') -ghPages.publish(path.join(__dirname, {message: `docs(gh-pages): publishing version ${version}`}, '../doc'), function (err: Error) { +const message = `docs(gh-pages): publishing version ${version} +[skip ci]` +ghPages.publish(path.join(__dirname, {message: message}, '../doc'), function (err: Error) { throw err }) \ No newline at end of file