Skip to content

Commit 7bc0855

Browse files
authored
build: Add in TypeDoc manual workflow yaml (#104)
Add in manual workflow to deploy type docs.
1 parent 650b3c1 commit 7bc0855

File tree

2 files changed

+27
-1
lines changed

2 files changed

+27
-1
lines changed

.github/workflows/cache_cleanup.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: cleanup caches by a branch
1+
name: Cleanup Caches by a Branch
22
on:
33
pull_request:
44
types:
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Publish TypeDocs
2+
3+
on:
4+
workflow_dispatch:
5+
6+
jobs:
7+
deploy_docs:
8+
name: Deploy TypeDocs
9+
runs-on: ubuntu-latest
10+
steps:
11+
- name: Checkout Repo
12+
uses: actions/checkout@v4
13+
14+
- name: Set up Node
15+
uses: actions/setup-node@v4
16+
with:
17+
node-version-file: "package.json"
18+
19+
- name: Setup pnpm & install dependencies
20+
uses: pnpm/action-setup@v2
21+
with:
22+
version: 8
23+
run_install: true
24+
25+
- name: Publish new docs
26+
run: node scripts/publish-docs.js

0 commit comments

Comments
 (0)