Skip to content

Commit

Permalink
fix: use correct tagets for doc builds
Browse files Browse the repository at this point in the history
  • Loading branch information
abdes committed Feb 26, 2022
1 parent 02375ff commit 559558e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: '3.9'
python-version: "3.9"

- name: Upgrade pip
run: |
Expand Down Expand Up @@ -51,12 +51,12 @@ jobs:

- name: Build doxygen documentation
# Build your program with the given configuration
run: cmake --build ${{github.workspace}}/build --target dox
run: cmake --build ${{github.workspace}}/build --target asap_all_dox

- name: Build sphinx documentation
# Build your program with the given configuration
run: cmake --build ${{github.workspace}}/build --target sphinx
run: cmake --build ${{github.workspace}}/build --target asap_all_sphinx

- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
Expand Down

0 comments on commit 559558e

Please sign in to comment.