Skip to content

Commit

Permalink
multi-docs attempt 2
Browse files Browse the repository at this point in the history
  • Loading branch information
shillinc-osu committed Apr 29, 2024
1 parent cce3fa4 commit 32bc2af
Showing 1 changed file with 15 additions and 6 deletions.
21 changes: 15 additions & 6 deletions .github/workflows/doxygen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,29 +19,38 @@ jobs:

# Steps represent a sequence of tasks that will be executed as part of the job
steps:

# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2

- name: Doxygen Action
- name: Doxygen Action_dev
uses: mattnotmitt/[email protected]
with:
# Path to Doxyfile
doxyfile-path: "./docs/deviceDoxyfile" # default is ./Doxyfile
# Working directory
working-directory: "./device" # default is .
working-directory: "." # default is .

- name: Deploy_dev
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
# Default Doxyfile build documentation to html directory.
# Change the directory if changes in Doxyfile
publish_dir: ./dev

# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2

- name: Doxygen Action
- name: Doxygen Action_web
uses: mattnotmitt/[email protected]
with:
# Path to Doxyfile
doxyfile-path: "./docs/webDoxyfile" # default is ./Doxyfile
# Working directory
working-directory: "./web" # default is .
- name: Deploy
working-directory: "." # default is .

- name: Deploy_web
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit 32bc2af

Please sign in to comment.