We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 650b3c1 commit 7bc0855Copy full SHA for 7bc0855
.github/workflows/cache_cleanup.yml
@@ -1,4 +1,4 @@
1
-name: cleanup caches by a branch
+name: Cleanup Caches by a Branch
2
on:
3
pull_request:
4
types:
.github/workflows/typedoc_manual_deploy.yml
@@ -0,0 +1,26 @@
+name: Publish TypeDocs
+
+on:
+ 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
22
+ version: 8
23
+ run_install: true
24
25
+ - name: Publish new docs
26
+ run: node scripts/publish-docs.js
0 commit comments