Skip to content

Commit

Permalink
chore(gh-pages): skip ci build on commit
Browse files Browse the repository at this point in the history
  • Loading branch information
tusharmath committed Feb 26, 2017
1 parent 9d21eb7 commit 14cc7bf
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion scripts/gh-pages.ts
Expand Up @@ -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
})

0 comments on commit 14cc7bf

Please sign in to comment.