Skip to content

docs: remove const #134

docs: remove const

docs: remove const #134

Workflow file for this run

name: Deploy Documentation
on:
push:
branches:
- main
workflow_dispatch:
branches:
- main
inputs:
deploy:
description: Deploy ?
required: true
default: false
type: boolean
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
with:
ref: main
- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version: '18.16.0'
- name: Install Dependencies
run: npm install
- name: Build Documentation
run: npm run docs:build
- name: Deploy to GithubPages
uses: JamesIves/[email protected]
with:
branch: gh-pages
folder: docs-dist
github_token: ${{ secrets.GITHUB_TOKEN }}