mirror of
https://github.com/iptv-org/iptv-org.github.io.git
synced 2025-05-10 17:10:06 -04:00
13 lines
214 B
JavaScript
13 lines
214 B
JavaScript
var { publish } = require('gh-pages')
|
|
|
|
publish(
|
|
'build',
|
|
{
|
|
branch: 'gh-pages',
|
|
repo: 'https://github.com/iptv-org/iptv-org.github.io.git',
|
|
dotfiles: true
|
|
},
|
|
() => {
|
|
console.log('Deploy Complete!')
|
|
}
|
|
)
|