diff --git a/.github/workflows/fetch-and-compile-workflow-documentation.yml b/.github/workflows/fetch-and-compile-workflow-documentation.yml index 7ae1bf6..42ea541 100644 --- a/.github/workflows/fetch-and-compile-workflow-documentation.yml +++ b/.github/workflows/fetch-and-compile-workflow-documentation.yml @@ -32,8 +32,7 @@ jobs: - name: Introduce additional source files, static files, and a configuration file run: | cp -r src/ingesters/workflow_docs/metagenome_workflow_overview/docs /tmp/book/src/chapters/1_Metagenome_Workflow_Overview - cp src/ingesters/workflow_docs/_static/js/index.js /tmp/book/src/_static/js/index.js - cp src/ingesters/workflow_docs/_static/favicon.ico /tmp/book/src/_static/favicon.ico + cp -r src/ingesters/workflow_docs/_static /tmp/book/src/_static cp src/ingesters/workflow_docs/overview.rst /tmp/book/src/chapters/overview.rst cp src/ingesters/workflow_docs/index.rst /tmp/book/src/index.rst cp src/ingesters/workflow_docs/conf.py /tmp/book/src/conf.py diff --git a/src/ingesters/workflow_docs/Dockerfile b/src/ingesters/workflow_docs/Dockerfile index eed1d1c..69738a1 100644 --- a/src/ingesters/workflow_docs/Dockerfile +++ b/src/ingesters/workflow_docs/Dockerfile @@ -32,8 +32,7 @@ RUN /tmp/fetch_docs_sources.sh # Introduce additional source documents and a configuration file. # Note: The above shell script will have created `/tmp/book/src/chapters/`. COPY metagenome_workflow_overview/docs /tmp/book/src/chapters/1_Metagenome_Workflow_Overview -COPY _static/js/index.js /tmp/book/src/_static/js/index.js -COPY _static/favicon.ico /tmp/book/src/_static/favicon.ico +COPY _static /tmp/book/src/_static COPY overview.rst /tmp/book/src/chapters/overview.rst COPY index.rst /tmp/book/src/index.rst COPY conf.py /tmp/book/src/conf.py