Skip to content
This repository has been archived by the owner on May 24, 2024. It is now read-only.

Publish Docs

Publish Docs #1

Workflow file for this run

# Source: https://github.com/actions/starter-workflows/blob/main/pages/static.yml
#
# SPDX-FileCopyrightText: (c) 2020 GitHub
# SPDX-License-Identifier: MIT
#
name: Publish Docs
on:
push:
tags:
- '*'
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: current
cache: 'npm'
- name: Install dependencies
run: npm i && npm i --save-dev jsdoc
- name: Build docs
run: |
chmod +x ./demo/clean
npm test
- name: Setup Pages
uses: actions/configure-pages@v5
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: './demo/output'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4