aboutsummaryrefslogtreecommitdiff
path: root/scripts/gh-pages.js
blob: 6c5d60e5f459690dbc0e9829756ddab45de7b72f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
var ghpages = require('gh-pages');

ghpages.publish(
    '__sapper__/export/aurora-data',
    {
        branch: 'gh-pages',
        repo: 'https://github.com/JakobST1n/Aurora-data.git',
        user: {
            name: 'jakobst1n'
        }
    },
    () => {
        console.log('Deploy Complete!')
    }
)