Skip to content

chore: bump version to 1.0.9 in package.json, update .gitignore to in… #15

chore: bump version to 1.0.9 in package.json, update .gitignore to in…

chore: bump version to 1.0.9 in package.json, update .gitignore to in… #15

Workflow file for this run

name: Generate API Docs
on:
push:
branches:
- main
jobs:
generate-docs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: "16"
- name: Install dependencies
run: npm install
- name: Generate documentation
run: npm run docs
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GH_TOKEN }}
publish_dir: ./docs