Prep for mv-local build
This commit is contained in:
parent
b332a2a205
commit
2eb21e0c6d
1 changed files with 14 additions and 6 deletions
20
.github/workflows/github_action_build_docs.yml
vendored
20
.github/workflows/github_action_build_docs.yml
vendored
|
|
@ -31,15 +31,23 @@ jobs:
|
||||||
- name: Install doc-building dependencies
|
- name: Install doc-building dependencies
|
||||||
run: |
|
run: |
|
||||||
python -m pip install --upgrade pip
|
python -m pip install --upgrade pip
|
||||||
pip install -r requirements.txt
|
|
||||||
cd docs/
|
cd docs/
|
||||||
make install
|
make install
|
||||||
|
|
||||||
# fail early here, run quickstrict with aborts also on warnings
|
## fail early here, run quickstrict with aborts also on warnings
|
||||||
# - name: Quick-test docs (no autodocs)
|
#- name: Quick-test docs (no autodocs)
|
||||||
# run: |
|
# run: |
|
||||||
# cd docs/
|
# cd docs/
|
||||||
# make quickstrict
|
# 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)
|
- name: Deploy docs (only from master/develop branch)
|
||||||
if: ${{ github.ref == 'refs/heads/develop' || github.ref == 'refs/heads/master'}}
|
if: ${{ github.ref == 'refs/heads/develop' || github.ref == 'refs/heads/master'}}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue