Skip to content

Run publish:doc

Run publish:doc #623

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@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # 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@e33196f7422957bea03ed53f6fbb155025ffc7b8 # 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