Skip to content

Commit 0e56d8a

Browse files
author
Matthew Fisher
committed
fix(gutenbuild): do not build any pre-release tags
1 parent ca5aa1f commit 0e56d8a

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

_scripts/gutenbuild

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ dev_build_dest=$1/en/dev
1212
PATH=$HOME/.local/bin:$PATH BUILDDIR=${build_dest} make deps build
1313

1414
# also build each version of the docs out to /en/<tag>
15-
for tag in $(git tag); do
15+
# NOTE(bacongobbler): do not build any pre-release tags
16+
for tag in $(git tag | grep -v "-alpha\|-beta\|-rc"); do
1617
tag_build_dest="$build_dest/en/$tag"
1718
git checkout $tag
1819
PATH=$HOME/.local/bin:$PATH BUILDDIR=${tag_build_dest} make deps build

0 commit comments

Comments
 (0)