Skip to content

Commit

Permalink
Add publish job
Browse files Browse the repository at this point in the history
  • Loading branch information
ipsavitsky committed Feb 21, 2024
1 parent c152579 commit 844426a
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 6 deletions.
26 changes: 22 additions & 4 deletions .github/workflows/doxygen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,26 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v3
- name: Checkout
uses: actions/checkout@v3

- name: Run doxygen
uses: mattnotmitt/doxygen-action@1.9.8
- name: Run doxygen
uses: mattnotmitt/doxygen-action@1.9.8
with:
enable-latex: true

- name: Debug
run: ls docs/

publish:
needs: build
runs-on: ubuntu-latest
steps:
- name: Debug
run: ls docs/

- name: Publish docs
uses: actions/upload-artifact@v3
with:
name: Documentation
path: ./docs/latex/refman.pdf
4 changes: 2 additions & 2 deletions Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -1890,7 +1890,7 @@ EXTRA_SEARCH_MAPPINGS =
# If the GENERATE_LATEX tag is set to YES, doxygen will generate LaTeX output.
# The default value is: YES.

GENERATE_LATEX = NO
GENERATE_LATEX = YES

# The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. If a
# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of
Expand Down Expand Up @@ -2076,7 +2076,7 @@ LATEX_EMOJI_DIRECTORY =
# readers/editors.
# The default value is: NO.

GENERATE_RTF = YES
GENERATE_RTF =

# The RTF_OUTPUT tag is used to specify where the RTF docs will be put. If a
# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of
Expand Down

0 comments on commit 844426a

Please sign in to comment.