From 34ef2f76c4a164528ecc152b6090536d0f11a3cb Mon Sep 17 00:00:00 2001 From: wpbonelli Date: Thu, 20 Jun 2024 22:24:15 -0400 Subject: [PATCH] docs(rtd): upload accidentally omitted dirs (#1890) Followup to #1889 --- .build_rtd_docs/conf.py | 6 ++++++ .build_rtd_docs/dev.rst | 2 +- .github/workflows/docs.yml | 6 ++++-- 3 files changed, 11 insertions(+), 3 deletions(-) diff --git a/.build_rtd_docs/conf.py b/.build_rtd_docs/conf.py index e878b3e10fd..2de05fbe9be 100644 --- a/.build_rtd_docs/conf.py +++ b/.build_rtd_docs/conf.py @@ -75,6 +75,12 @@ dst = os.path.join(dstdir, fpth) shutil.copy(src, dst) +# -- copy style guide +fpth = "styleguide.md" +src = os.path.join(fpth) +dst = os.path.join(dstdir, fpth) +shutil.copy(src, dst) + # -- copy deprecations markdown --------------------------------------------- print("Copy the deprecations table") dstdir = "_mf6run" diff --git a/.build_rtd_docs/dev.rst b/.build_rtd_docs/dev.rst index 899192af7ec..e90276ecb80 100644 --- a/.build_rtd_docs/dev.rst +++ b/.build_rtd_docs/dev.rst @@ -9,4 +9,4 @@ This section includes developer instructions and conventions. _dev/CONTRIBUTING.md _dev/DEVELOPER.md - styleguide.md + _dev/styleguide.md diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index c5d5b7a1363..a6751a93995 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -181,12 +181,14 @@ jobs: with: name: rtd-files-for-${{ github.sha }} path: | + modflow6/.build_rtd_docs/dev.rst modflow6/.build_rtd_docs/index.rst modflow6/.build_rtd_docs/mf6io.rst - # run-time-comparison is moved to _mf6run by conf.py - modflow6/.build_rtd_docs/_mf6run/ + modflow6/.build_rtd_docs/_dev/ modflow6/.build_rtd_docs/_mf6io/ + modflow6/.build_rtd_docs/_mf6run/ modflow6/.build_rtd_docs/_static/ + rtd_trigger: name: rtd-trigger