Skip to content

Instantly share code, notes, and snippets.

@el3um4s
Last active October 29, 2021 14:04
Show Gist options
  • Save el3um4s/2d3a9bd9adae78d3db8c5a4d6e8fbe98 to your computer and use it in GitHub Desktop.
Save el3um4s/2d3a9bd9adae78d3db8c5a4d6e8fbe98 to your computer and use it in GitHub Desktop.
MEDIUM - Svelte & GitHub Pages - 01
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