-
Notifications
You must be signed in to change notification settings - Fork 94
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Generating ARMI docs also in PDF format (#2072)
- Loading branch information
1 parent
3f3f8df
commit 13c2dbb
Showing
7 changed files
with
73 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,7 +37,8 @@ jobs: | |
git submodule init | ||
git submodule update | ||
make html | ||
- name: deploy | ||
make simplepdf | ||
- name: Deploy | ||
if: github.ref == 'refs/heads/main' | ||
uses: JamesIves/[email protected] | ||
with: | ||
|
@@ -46,10 +47,16 @@ jobs: | |
branch: main | ||
folder: doc/_build/html | ||
target-folder: armi | ||
- name: Archive Docs from PR | ||
- name: Archive HTML Docs | ||
if: github.ref != 'refs/heads/main' | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: pr-docs | ||
name: html-docs | ||
path: doc/_build/html | ||
retention-days: 5 | ||
- name: Archive PDF Docs | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: pdf-docs | ||
path: doc/_build/simplepdf/ARMI.pdf | ||
retention-days: 5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters