Skip to content

Commit 34ef2f7

Browse files
authored
docs(rtd): upload accidentally omitted dirs (#1890)
Followup to #1889
1 parent 89e6d96 commit 34ef2f7

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

.build_rtd_docs/conf.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,12 @@
7575
dst = os.path.join(dstdir, fpth)
7676
shutil.copy(src, dst)
7777

78+
# -- copy style guide
79+
fpth = "styleguide.md"
80+
src = os.path.join(fpth)
81+
dst = os.path.join(dstdir, fpth)
82+
shutil.copy(src, dst)
83+
7884
# -- copy deprecations markdown ---------------------------------------------
7985
print("Copy the deprecations table")
8086
dstdir = "_mf6run"

.build_rtd_docs/dev.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ This section includes developer instructions and conventions.
99

1010
_dev/CONTRIBUTING.md
1111
_dev/DEVELOPER.md
12-
styleguide.md
12+
_dev/styleguide.md

.github/workflows/docs.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -181,12 +181,14 @@ jobs:
181181
with:
182182
name: rtd-files-for-${{ github.sha }}
183183
path: |
184+
modflow6/.build_rtd_docs/dev.rst
184185
modflow6/.build_rtd_docs/index.rst
185186
modflow6/.build_rtd_docs/mf6io.rst
186-
# run-time-comparison is moved to _mf6run by conf.py
187-
modflow6/.build_rtd_docs/_mf6run/
187+
modflow6/.build_rtd_docs/_dev/
188188
modflow6/.build_rtd_docs/_mf6io/
189+
modflow6/.build_rtd_docs/_mf6run/
189190
modflow6/.build_rtd_docs/_static/
191+
190192
191193
rtd_trigger:
192194
name: rtd-trigger

0 commit comments

Comments
 (0)