1
1
mirror of https://github.com/primer/css.git synced 2024-11-30 11:17:05 +03:00
css/script/publish-storybook
2018-07-03 10:14:07 -07:00

14 lines
296 B
JavaScript
Executable File

#!/usr/bin/env node
const ghpages = require('gh-pages')
ghpages.publish('build',{
branch: 'gh-pages',
silent: true,
repo: `https://primer-css:${process.env.GH_TOKEN}@github.com/primer/storybook`
}, (error) => {
if(error) {
console.error('gh-pages failed to publish:', error)
}
})