We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ca5aa1f commit 0e56d8aCopy full SHA for 0e56d8a
1 file changed
_scripts/gutenbuild
@@ -12,7 +12,8 @@ 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
+# NOTE(bacongobbler): do not build any pre-release tags
16
+for tag in $(git tag | grep -v "-alpha\|-beta\|-rc"); do
17
tag_build_dest="$build_dest/en/$tag"
18
git checkout $tag
19
PATH=$HOME/.local/bin:$PATH BUILDDIR=${tag_build_dest} make deps build
0 commit comments