We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 070a6d6 commit c8a8424Copy full SHA for c8a8424
deploy.sh
@@ -0,0 +1,17 @@
1
+#!/usr/bin/env sh
2
+# abort on errors
3
+set -e
4
+# build
5
+npm run build
6
+# navigate into the build output directory
7
+cd dist
8
+# if you are deploying to a custom domain
9
+# echo 'www.example.com' > CNAME
10
+git init
11
+git add -A
12
+git commit -m 'deploy'
13
+# if you are deploying to https://<USERNAME>.github.io
14
+# git push -f [email protected]:<USERNAME>/<USERNAME>.github.io.git main
15
+# if you are deploying to https://<USERNAME>.github.io/<REPO>
16
+ git push -f [email protected]:<USERNAME>/<REPO>.git main:gh-pages
17
+cd -
0 commit comments