File tree Expand file tree Collapse file tree 7 files changed +25
-13
lines changed Expand file tree Collapse file tree 7 files changed +25
-13
lines changed Original file line number Diff line number Diff line change @@ -20,18 +20,28 @@ jobs:
20
20
with :
21
21
node-version : 18
22
22
23
- - run : npm install
24
- - run : npm run build
25
- - run : |
23
+ - name : Install dependencies
24
+ run : npm install
25
+
26
+ - name : Build packages
27
+ run : npm run build
28
+
29
+ - name : Build demo
30
+ run : |
26
31
cd demo
27
32
npm install
28
33
npm run build-all
29
- - run : |
34
+
35
+ - name : Build vuepress
36
+ run : |
30
37
cd docs
31
38
npm install
32
- - run : npm run build-docs
39
+ npm run build-docs
33
40
34
- - name : Deploy
41
+ - name : Build Typedoc
42
+ run : npm run typedoc
43
+
44
+ - name : Deploy main
35
45
if : github.ref == 'refs/heads/main'
36
46
uses : JamesIves/github-pages-deploy-action@4.1.7
37
47
with :
64
74
with :
65
75
branch : gh-pages
66
76
folder : docs/src/.vuepress/dist
67
- target-folder : ./beta
77
+ target-folder : ./beta
78
+
79
+ - name : Deploy Typedoc
80
+ if : github.ref == 'refs/heads/main'
81
+ uses : JamesIves/github-pages-deploy-action@4.1.7
82
+ with :
83
+ branch : gh-pages
84
+ folder : typedoc
85
+ target-folder : ./typedoc
Original file line number Diff line number Diff line change 2
2
"$schema" : " https://typedoc.org/schema.json" ,
3
3
"entryPoints" : [" dist/index.d.ts" ],
4
4
"tsconfig" : " tsconfig.typedoc.json" ,
5
- "includeVersion" : true
6
5
}
Original file line number Diff line number Diff line change 2
2
"$schema" : " https://typedoc.org/schema.json" ,
3
3
"entryPoints" : [" src/index.ts" ],
4
4
"tsconfig" : " tsconfig.app.json" ,
5
- "includeVersion" : true ,
6
5
}
Original file line number Diff line number Diff line change 2
2
"$schema" : " https://typedoc.org/schema.json" ,
3
3
"entryPoints" : [" dist/index.d.ts" ],
4
4
"tsconfig" : " tsconfig.typedoc.json" ,
5
- "includeVersion" : true
6
5
}
Original file line number Diff line number Diff line change 2
2
"$schema" : " https://typedoc.org/schema.json" ,
3
3
"entryPoints" : [" dist/index.d.ts" ],
4
4
"tsconfig" : " tsconfig.typedoc.json" ,
5
- "includeVersion" : true
6
5
}
Original file line number Diff line number Diff line change 2
2
"$schema" : " https://typedoc.org/schema.json" ,
3
3
"entryPoints" : [" dist/index.d.ts" ],
4
4
"tsconfig" : " tsconfig.typedoc.json" ,
5
- "includeVersion" : true
6
5
}
Original file line number Diff line number Diff line change 2
2
"$schema" : " https://typedoc.org/schema.json" ,
3
3
"entryPoints" : [" dist/index.d.ts" ],
4
4
"tsconfig" : " tsconfig.typedoc.json" ,
5
- "includeVersion" : true
6
5
}
You can’t perform that action at this time.
0 commit comments