Skip to content

Commit

Permalink
Update GenerateDesignDocs.yml
Browse files Browse the repository at this point in the history
Signed-off-by: Theron Halsey <[email protected]>
  • Loading branch information
theronhalsey authored Dec 8, 2023
1 parent 460f510 commit b6e6e14
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/GenerateDesignDocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,18 +25,24 @@ jobs:
- uses: actions/setup-node@v2
with:
node-version: "20.x"
- name: JSDoc Action
- name: JSDoc Action - src
uses: andstor/[email protected]
with:
source_dir: ./src
recurse: true
output_dir: ./out/src
- name: JSDoc Action - utils
uses: andstor/[email protected]
with:
source_dir: ./utils
recurse: true
output_dir: ./out/utils
- name: Push docs to repo
run: |
git config --global user.name github-actions[bot]
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
git add ./out
git commit -m "Updating Jsdoc documentation" || echo "No changes to commit"
git commit -a -m "Updating Jsdoc documentation"
- name: Push changes
uses: ad-m/github-push-action@master
with:
Expand Down

0 comments on commit b6e6e14

Please sign in to comment.