From 299b8880ddce96959fa7223404773d4e10bb5d8b Mon Sep 17 00:00:00 2001 From: Paul Chote Date: Sun, 13 Dec 2020 17:00:01 +0000 Subject: [PATCH] Fix api output directory. --- .github/workflows/documentation.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml index 33210d3393..03dce2cf5e 100644 --- a/.github/workflows/documentation.yml +++ b/.github/workflows/documentation.yml @@ -81,18 +81,18 @@ jobs: env: GIT_TAG: ${{ github.event.inputs.tag }} run: | - ./utility.sh all --docs "${GIT_TAG}" > "docs/playtest/traits.md" - ./utility.sh all --weapon-docs "${GIT_TAG}" > "docs/playtest/weapons.md" - ./utility.sh all --lua-docs "${GIT_TAG}" > "docs/playtest/lua.md" + ./utility.sh all --docs "${GIT_TAG}" > "docs/api/playtest/traits.md" + ./utility.sh all --weapon-docs "${GIT_TAG}" > "docs/api/playtest/weapons.md" + ./utility.sh all --lua-docs "${GIT_TAG}" > "docs/api/playtest/lua.md" - name: Update docs.openra.net (Release) if: startsWith(github.event.inputs.tag, 'release-') env: GIT_TAG: ${{ github.event.inputs.tag }} run: | - ./utility.sh all --docs "${GIT_TAG}" > "docs/release/traits.md" - ./utility.sh all --weapon-docs "${GIT_TAG}" > "docs/release/weapons.md" - ./utility.sh all --lua-docs "${GIT_TAG}" > "docs/release/lua.md" + ./utility.sh all --docs "${GIT_TAG}" > "docs/api/release/traits.md" + ./utility.sh all --weapon-docs "${GIT_TAG}" > "docs/api/release/weapons.md" + ./utility.sh all --lua-docs "${GIT_TAG}" > "docs/api/release/lua.md" - name: Push docs.openra.net env: