summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDashie <dashie@sigpipe.me>2021-03-15 08:51:11 +0100
committerDashie <dashie@sigpipe.me>2021-03-15 08:51:11 +0100
commit168077d5b0d5e1945b973b1fd2bffb7a4261aa64 (patch)
treeef7a643515ab1808623eda86a21d1f776c3e4aa6
parentf9d1f253094050d571d4e55513d335022ba7f0f3 (diff)
fix2
-rw-r--r--.github/workflows/build-docs.yml9
1 files changed, 4 insertions, 5 deletions
diff --git a/.github/workflows/build-docs.yml b/.github/workflows/build-docs.yml
index 8daebf47..2f7805c1 100644
--- a/.github/workflows/build-docs.yml
+++ b/.github/workflows/build-docs.yml
@@ -20,12 +20,11 @@ jobs:
with:
python-version: 3.9
- name: Install dependencies
- run:
- - apt install -y graphviz
- - pip3 install sphinx-guillotina-theme sphinx
+ run: |
+ apt install -y graphviz
+ pip3 install sphinx-guillotina-theme sphinx
- name: Build docs
- run:
- - ./build_docs.sh
+ run: ./build_docs.sh
working-directory: docs
- name: Deploy docs
uses: burnett01/rsync-deployments@4.1