Skip to content

8.0.4

8.0.4 #149

Workflow file for this run

name: Build docs
on:
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+'
jobs:
build-and-deploy:
concurrency: ci-${{ github.ref }} # Recommended if you intend to make multiple deployments in quick succession.
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v3
- name: Use Node.js 17
uses: actions/setup-node@v2
with:
node-version: 'lts/*'
cache: 'npm'
- name: Install and Build 🔧
run: |
npm ci
npm run build
npm run format
npm run doc
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4.2.5
with:
branch: gh-pages # The branch the action should deploy to.
folder: docs # The folder the action should deploy.