We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4e6302a commit 6312d72Copy full SHA for 6312d72
1 file changed
website/deploy/gh-pages.sh
@@ -0,0 +1,15 @@
1
+# This script will build the website and push it to the gh-pages branch,
2
+# publishing it automatically to https://bitcoindevkit.github.io/devkit-wallet/.
3
+
4
+set -euo pipefail
5
6
+just clean
7
+just build
8
+cd ./site/
9
+git init .
10
+git switch --create gh-pages
11
+git add .
12
+git commit --message "Deploy $(date +"%Y-%m-%d")"
13
+git remote add upstream git@github.com:bitcoindevkit/devkit-wallet.git
14
+git push upstream gh-pages --force
15
+cd ..
0 commit comments