Skip to content

Commit 1a76be9

Browse files
fixing docs deploy
1 parent 62bdae4 commit 1a76be9

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed

.github/workflows/deploy.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,12 @@ jobs:
2828
- uses: actions/checkout@v3
2929
- uses: ./.github/actions/install-deps
3030
- run: pnpm build
31-
- name: Install, build, and upload your site
32-
uses: withastro/action@v2
31+
- run: pnpm build
32+
working-directory: packages/docs
33+
- name: Upload Pages Artifact
34+
uses: actions/upload-pages-artifact@v3
3335
with:
34-
path: packages/docs
35-
node-version: 18
36-
package-manager: [email protected]
36+
path: "${{ inputs.path }}/dist/"
3737

3838
deploy:
3939
needs: build

packages/docs/src/typedoc-zod-extended.js

-2
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ export function load(app) {
3333
});
3434

3535
function onCreateDeclaration(_, refl) {
36-
console.log(refl.name);
3736
if (refl.name.endsWith("Options")) {
3837
const declaration = refl.project
3938
.getSymbolFromReflection(refl)
@@ -49,7 +48,6 @@ export function load(app) {
4948

5049
schemaTypes.set(sourceKey(refl.type.declaration.sources[0]), refl);
5150

52-
console.log(matchingSchema);
5351
refl.type.declaration.children.forEach((child) => {
5452
child.comment = new Comment([
5553
{

0 commit comments

Comments
 (0)