mirror of
https://github.com/evennia/evennia.git
synced 2026-03-16 21:06:30 +01:00
Refactor git action build script
This commit is contained in:
parent
4dbd5df09b
commit
710ccf4574
2 changed files with 9 additions and 21 deletions
29
.github/workflows/github_action_build_docs.yml
vendored
29
.github/workflows/github_action_build_docs.yml
vendored
|
|
@ -21,38 +21,25 @@ jobs:
|
|||
python-version: [3.7]
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
with:
|
||||
fetch-depth: 0
|
||||
|
||||
- name: Set up Python ${{ matrix.python-version }}
|
||||
uses: actions/setup-python@v2
|
||||
with:
|
||||
python-version: ${{ matrix.python-version }}
|
||||
|
||||
- name: Install doc-building dependencies
|
||||
run: |
|
||||
python -m pip install --upgrade pip
|
||||
cd docs/
|
||||
make install
|
||||
|
||||
# full game dir needed for mv-local
|
||||
- name: Set up evennia game dir
|
||||
- uses: actions/checkout@v2
|
||||
if: ${{ github.ref == 'refs/heads/develop' || github.ref == 'refs/heads/master'}}
|
||||
with:
|
||||
fetch-depth: 0
|
||||
run: |
|
||||
git config --global user.email "docbuilder@evennia.com"
|
||||
git config --global user.name "Evennia docbuilder action"
|
||||
python -m pip install --upgrade pip
|
||||
pip install -e .
|
||||
pip install -r requirements_extra.txt
|
||||
cd ..
|
||||
evennia --init gamedir
|
||||
cd gamedir
|
||||
evennia migrate
|
||||
|
||||
- name: Build and deploy docs (only from master/develop branch)
|
||||
if: ${{ github.ref == 'refs/heads/develop' || github.ref == 'refs/heads/master'}}
|
||||
run: |
|
||||
git checkout v0.9.5
|
||||
git checkout develop
|
||||
git config --global user.email "docbuilder@evennia.com"
|
||||
git config --global user.name "Evennia docbuilder action"
|
||||
cd docs
|
||||
cd ../evennia/docs/
|
||||
make install
|
||||
make release
|
||||
|
|
|
|||
|
|
@ -3,6 +3,7 @@
|
|||
SOURCEDIR = source
|
||||
BUILDDIR = build
|
||||
AUTODOCDIR = $(SOURCEDIR)/api
|
||||
|
||||
# You can set these variables from the command line, and also
|
||||
# from the environment for the first two.
|
||||
SPHINXOPTS ?=
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue