mirror of
https://github.com/iptv-org/iptv-org.github.io.git
synced 2025-05-12 01:50:05 -04:00
13 lines
211 B
JavaScript
13 lines
211 B
JavaScript
import { publish } from 'gh-pages'
|
|
|
|
publish(
|
|
'build',
|
|
{
|
|
branch: 'gh-pages',
|
|
repo: 'https://github.com/iptv-org/iptv-org.github.io.git',
|
|
dotfiles: true
|
|
},
|
|
() => {
|
|
console.log('Deploy Complete!')
|
|
}
|
|
)
|