mirror of
https://github.com/primer/css.git
synced 2024-11-30 11:17:05 +03:00
14 lines
296 B
JavaScript
Executable File
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)
|
|
}
|
|
})
|