summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorClement Tsang <34804052+ClementTsang@users.noreply.github.com>2021-06-20 22:48:14 -0700
committerGitHub <noreply@github.com>2021-06-21 01:48:14 -0400
commit53296d11d981b607ee643c49033f378842b964dc (patch)
treeb14abe30877cc2f3e440d0ba3afe1627681d0dc8 /.github
parent06071d5abfb8b6715768e8bbb1236be49c02cf46 (diff)
ci: fix doc deploy action (#507)
Fix for simple mkdocs deploy action. I'll likely rewrite this if I add versioning, which I probably will.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/docs.yml5
1 files changed, 3 insertions, 2 deletions
diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml
index 67d6c829..f9faaa71 100644
--- a/.github/workflows/docs.yml
+++ b/.github/workflows/docs.yml
@@ -23,5 +23,6 @@ jobs:
python-version: 3.x
- run: pip install mkdocs-material
- run: pip install mdx_truly_sane_lists
- - run: cd docs/
- - run: mkdocs gh-deploy --force
+ - run: |
+ cd docs/
+ mkdocs gh-deploy --force
a id='n59' href='#n59'>59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148