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 c745c8e commit ae28905Copy full SHA for ae28905
deploy-docs.sh
@@ -0,0 +1,18 @@
1
+#!/bin/bash
2
+
3
+set -e # Exit immediately if any command fails
4
5
+BRANCH="gh-pages-pe-test"
6
7
+echo "Deploying Platform Engineer Docs..."
8
+mike deploy --config-file en/pe-docs/mkdocs.yml "Platform Engineer" --branch $BRANCH --push
9
10
+echo "Deploying Developer Docs..."
11
+mike deploy --config-file en/developer-docs/mkdocs.yml Developer latest --branch $BRANCH --push
12
13
+echo "Setting Developer as Default Version..."
14
+mike set-default --config-file en/developer-docs/mkdocs.yml Developer --branch $BRANCH --push
15
16
17
18
+mike serve --remote origin --branch $BRANCH
0 commit comments