We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 598489d commit 39b503fCopy full SHA for 39b503f
scripts/docs-deploy.sh
@@ -0,0 +1,21 @@
1
+#!/usr/bin/env sh
2
+
3
+# abort on errors
4
+set -e
5
6
+# build
7
+npm run docs:build
8
9
+# navigate into the build output directory
10
+cd docs/.vuepress/dist
11
12
+# if you are deploying to a custom domain
13
+# echo 'www.example.com' > CNAME
14
15
+git init
16
+git add -A
17
+git commit -m 'deploy'
18
19
+git push -f [email protected]:kazupon/eslint-plugin-vue-i18n.git master:gh-pages
20
21
+cd -
0 commit comments