From 14cc7bf492c31ee0af0c51411ccd0bd8f7955e79 Mon Sep 17 00:00:00 2001 From: Tushar Mathur Date: Sun, 26 Feb 2017 20:33:06 +0530 Subject: [PATCH] chore(gh-pages): skip ci build on commit --- scripts/gh-pages.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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