We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 149c957 + a3a25c0 commit ca5aa1fCopy full SHA for ca5aa1f
1 file changed
_scripts/gutenbuild
@@ -6,3 +6,17 @@ set -x
6
build_dest=$1
7
8
PATH=$HOME/.local/bin:$PATH BUILDDIR=${build_dest} make deps build
9
+
10
+# build again, this time to /en/dev
11
+dev_build_dest=$1/en/dev
12
+PATH=$HOME/.local/bin:$PATH BUILDDIR=${build_dest} make deps build
13
14
+# also build each version of the docs out to /en/<tag>
15
+for tag in $(git tag); do
16
+ tag_build_dest="$build_dest/en/$tag"
17
+ git checkout $tag
18
+ PATH=$HOME/.local/bin:$PATH BUILDDIR=${tag_build_dest} make deps build
19
+done
20
21
+# restore back to master
22
+git checkout master
0 commit comments