Last active
October 29, 2021 14:04
-
-
Save el3um4s/2d3a9bd9adae78d3db8c5a4d6e8fbe98 to your computer and use it in GitHub Desktop.
MEDIUM - Svelte & GitHub Pages - 01
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var ghpages = require('gh-pages'); | |
ghpages.publish( | |
'public', // path to public directory | |
{ | |
branch: 'gh-pages', | |
repo: 'https://github.com/el3um4s/petits-chevaux.git', // Update to point to your repository | |
user: { | |
name: 'Samuele', // update to use your name | |
email: '[email protected]' // Update to use your email | |
}, | |
dotfiles: true | |
}, | |
() => { | |
console.log('Deploy Complete!'); | |
} | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment