From cf5cb35627854911ce8ea22ee8df2c101f3f4058 Mon Sep 17 00:00:00 2001 From: Robert Oostenveld Date: Wed, 25 Sep 2024 09:26:49 +0200 Subject: [PATCH] rebuild and commit the categories when building the website --- _scripts/build.sh | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/_scripts/build.sh b/_scripts/build.sh index a1db66e35..f9af6e092 100755 --- a/_scripts/build.sh +++ b/_scripts/build.sh @@ -54,6 +54,13 @@ _scripts/tags.sh $GIT add _data/tag/*.yml $GIT add tag/*.md $GIT commit -m "updated tags" _data/tag tag > /dev/null 2>&1 + +# update the categories, this uses a bash script +_scripts/categories.sh +$GIT add _data/category/*.yml +$GIT add category/*.md +$GIT commit -m "updated categories" _data/category category > /dev/null 2>&1 + # push the updates back to the repository $GIT push > /dev/null 2>&1