From 2eb21e0c6d446e4298094d7f82d9791fbdb3a465 Mon Sep 17 00:00:00 2001 From: Griatch Date: Fri, 21 Jan 2022 00:56:36 +0100 Subject: [PATCH] Prep for mv-local build --- .../workflows/github_action_build_docs.yml | 20 +++++++++++++------ 1 file changed, 14 insertions(+), 6 deletions(-) diff --git a/.github/workflows/github_action_build_docs.yml b/.github/workflows/github_action_build_docs.yml index ab71612096..5bbea95c32 100644 --- a/.github/workflows/github_action_build_docs.yml +++ b/.github/workflows/github_action_build_docs.yml @@ -31,15 +31,23 @@ jobs: - name: Install doc-building dependencies run: | python -m pip install --upgrade pip - pip install -r requirements.txt cd docs/ make install - # fail early here, run quickstrict with aborts also on warnings - # - name: Quick-test docs (no autodocs) - # run: | - # cd docs/ - # make quickstrict + ## fail early here, run quickstrict with aborts also on warnings + #- name: Quick-test docs (no autodocs) + # run: | + # cd docs/ + # make quickstrict + + # full game dir needed for mv-local + - name: Set up evennia game dir + run: | + pip install -e . + cd .. + evennia --init gamedir + cd gamedir + evennia migrate - name: Deploy docs (only from master/develop branch) if: ${{ github.ref == 'refs/heads/develop' || github.ref == 'refs/heads/master'}}