From 7549abc516875bfd4586e84b92c9b150866bcb38 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20Mail=C3=A4nder?= Date: Sun, 20 Aug 2017 14:45:56 +0200 Subject: [PATCH] Wiki publish the auto-generated settings documentation. --- packaging/update-wiki.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packaging/update-wiki.sh b/packaging/update-wiki.sh index 871d7086b7..0d0f3b81ff 100755 --- a/packaging/update-wiki.sh +++ b/packaging/update-wiki.sh @@ -30,12 +30,14 @@ git clone git@github.com:OpenRA/OpenRA.wiki.git $HOME/openra-wiki mono --debug ../OpenRA.Utility.exe all --docs > "${HOME}/openra-wiki/Traits${TAG}.md" mono --debug ../OpenRA.Utility.exe all --weapon-docs > "${HOME}/openra-wiki/Weapons${TAG}.md" mono --debug ../OpenRA.Utility.exe all --lua-docs > "${HOME}/openra-wiki/Lua API${TAG}.md" +mono --debug ../OpenRA.Utility.exe all --settings-docs > "${HOME}/openra-wiki/Settings${TAG}.md" pushd $HOME/openra-wiki git config --local user.email "orabot@users.noreply.github.com" git config --local user.name "orabot" git add "Traits${TAG}.md" git add "Lua API${TAG}.md" +git add "Settings${TAG}.md" git commit -m "Update trait and scripting documentation for branch $1" && git push origin master popd