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 397c8ff commit 3911054Copy full SHA for 3911054
README.md
@@ -8,8 +8,8 @@ Local build
8
9
Full build, fetching the service configuration schemas and plugin reference:
10
11
- ./build.sh --update
+ ./build.sh --update --local
12
13
Build using previously downloaded service configuration schemas and plugin reference:
14
15
- ./build.sh
+ ./build.sh --local
build.sh
@@ -74,7 +74,11 @@ echo "* Clean previous HTML build..."
74
rm -rf site
75
76
echo "* Building HTML..."
77
-mike deploy -F qwc2.yml --push $branch
+if [ "$1" == "--local" ] || [ "$2" == "--local" ]; then
78
+ mkdocs build -f qwc2.yml
79
+else
80
+ mike deploy -F qwc2.yml --push $branch
81
+fi
82
83
# cleanup venv
84
echo "* Clean venv..."
0 commit comments