Skip to content

Commit

Permalink
testing
Browse files Browse the repository at this point in the history
  • Loading branch information
brueckner committed Sep 12, 2024
1 parent 201af7f commit 0ea95f2
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,6 @@ jobs:

- name: Sphinx Build
uses: ./.github/workflows/sphinx
with:
context: .

14 changes: 7 additions & 7 deletions .github/workflows/sphinx/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
FROM sphinxdoc/sphinx

WORKDIR /docs
COPY ../../../requirements.txt /docs
COPY ../../../sphinx-conf.py /docs/conf.py
COPY ../../../resources/_templates /docs/_templates
COPY ../../../resources/_static /docs/_static
COPY ../../../resources/_redirects /docs/_redirects
COPY ../../../locales /docs/locales
COPY ../../../source /docs
COPY requirements.txt /docs
COPY sphinx-conf.py /docs/conf.py
COPY resources/_templates /docs/_templates
COPY resources/_static /docs/_static
COPY resources/_redirects /docs/_redirects
COPY locales /docs/locales
COPY source /docs
RUN pip3 install -r requirements.txt

# Copies your code file from your action repository to the filesystem path `/` of the container
Expand Down

0 comments on commit 0ea95f2

Please sign in to comment.