Skip to content

Commit

Permalink
Merge branch 'jsdoc'
Browse files Browse the repository at this point in the history
  • Loading branch information
arlaptiev committed Aug 1, 2024
2 parents 21686c3 + 43558ff commit 801498b
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/jsdoc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: m080 docs

on:
push:
branches:
- main
- jsdoc

jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Build
uses: andstor/jsdoc-action@v1
with:
source_dir: ./src
output_dir: ./docs
config_file: .jsdoc.json
template: minami
front_page: README.md

- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
deploy_key: ${{ secrets.ACTIONS_DEPLOY_KEY }}
publish_dir: ./docs

0 comments on commit 801498b

Please sign in to comment.