Skip to content

Commit

Permalink
artifact upload
Browse files Browse the repository at this point in the history
  • Loading branch information
hobu committed Jul 23, 2020
1 parent fedd0a4 commit ab0ae4a
Showing 1 changed file with 23 additions and 5 deletions.
28 changes: 23 additions & 5 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,11 @@ jobs:
run: |
if find . -name '*.rst' | xargs grep -P '\t'; then echo 'Tabs are bad, please use four spaces in .rst files.'; false; fi
working-directory: ./doc
- name: Doxygen
shell: bash -l {0}
run: |
make doxygen
working-directory: ./doc
- name: HTML
shell: bash -l {0}
run: |
Expand All @@ -37,8 +42,21 @@ jobs:
run: |
make latexpdf
working-directory: ./doc
- name: Spelling
shell: bash -l {0}
run: |
make spell
working-directory: ./doc
# - name: Spelling
# shell: bash -l {0}
# run: |
# make spell
# working-directory: ./doc
- uses: actions/upload-artifact@v2
with:
name: PDF
path: doc/build/latex/PDAL.pdf
- uses: actions/upload-artifact@v2
with:
name: HTML
path: doc/build/html/*
- uses: actions/upload-artifact@v2
with:
name: Doxygen
path: doc/doxygen/*

0 comments on commit ab0ae4a

Please sign in to comment.