Skip to content

fix #39 and improve assembly highlighting #48

fix #39 and improve assembly highlighting

fix #39 and improve assembly highlighting #48

Workflow file for this run

name: JSdoc
on:
# Triggers the workflow on push events but only for the main or dev branch
push:
branches: [ main, dev ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
concurrency:
group: push
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Set up workspace
uses: actions/checkout@v3
- name: Build documention
uses: andstor/jsdoc-action@v1.2.1
with:
source_dir: ./src
output_dir: ./doc
config_file: jsdoc.json
template: '@alexispuga/jsdoc-template'
front_page: README.md
- name: Auto commit
run: |
git add .
git -c user.name='jsdoc-bot' -c user.email='speed-highlight@protonmail.com' commit -m "Doc update" || exit 0
git push
env:
github-token: ${{ secrets.GITHUB_TOKEN }}