Skip to content

Run publish:doc

Run publish:doc #882

Workflow file for this run

# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
name: Run publish:doc
on:
workflow_dispatch:
workflow_run:
workflows: ["Release"]
types:
- completed
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v3
with:
fetch-depth: 0
- run: |
git config user.name github-actions
git config user.email github-actions@github.com
- name: Use Node.js LTS
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v3
with:
node-version: lts/*
- run: npm install
- name: Install dependencies (Python)
run: npm run install-docs-deps
- name: Build and deploy docs
run: npm run publish:docs