Skip to content

Commit

Permalink
Trying again
Browse files Browse the repository at this point in the history
  • Loading branch information
john-science committed Jan 29, 2025
1 parent f8c7ad6 commit bd86606
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
9 changes: 8 additions & 1 deletion .github/workflows/docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,17 @@ jobs:
# branch: main
# folder: doc/_build/html
# target-folder: armi
- name: Archive HTML Docs
if: github.ref != 'refs/heads/main'
uses: actions/upload-artifact@v4
with:
name: pr-docs
path: doc/_build/html
retention-days: 3
- name: Archive PDF Docs
if: github.ref != 'refs/heads/main'
uses: actions/upload-artifact@v4
with:
name: pdf-docs
path: doc/_build/simplepdf/ARMI.pdf
retention-days: 5
retention-days: 3
2 changes: 1 addition & 1 deletion doc/user/inputs.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1607,7 +1607,7 @@ through ``self.cs``.
# User textwrap to split up long words that mess up the table.
wrapper = textwrap.TextWrapper(width=25, subsequent_indent='')
wrapper2 = textwrap.TextWrapper(width=10, subsequent_indent='')
content = '\n.. list-table:: ARMI Settings\n :header-rows: 1\n :widths: 20 30 15 15\n :class: ssp-tiny\n \n'
content = '\n.. rst-class:: break_before, ssp-landscape, break_after\n\n.. list-table:: ARMI Settings\n :header-rows: 1\n :widths: 20 30 15 15\n :class: ssp-tiny\n \n'
content += ' * - Name\n - Description\n - Default\n - Options\n'

for setting in sorted(cs.values(), key=lambda s: s.name):
Expand Down

0 comments on commit bd86606

Please sign in to comment.