aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rw-r--r--scripts/gh-pages.js15
1 files changed, 15 insertions, 0 deletions
diff --git a/scripts/gh-pages.js b/scripts/gh-pages.js
new file mode 100644
index 0000000..6c5d60e
--- /dev/null
+++ b/scripts/gh-pages.js
@@ -0,0 +1,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!')
+ }
+)