From 264b1d0db847d4402fdcc59af304d889d4485b95 Mon Sep 17 00:00:00 2001 From: Brandon Liu Date: Sun, 25 Feb 2024 17:44:21 +0800 Subject: [PATCH] Generate typedoc and put in GH pages dir (#369) * Generate typedoc and put in GH pages dir --- .github/workflows/actions.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/actions.yml b/.github/workflows/actions.yml index 14578ea..85a71bb 100644 --- a/.github/workflows/actions.yml +++ b/.github/workflows/actions.yml @@ -25,6 +25,7 @@ jobs: - run: cd serverless/cloudflare && cp wrangler.toml.example wrangler.toml && npm install && npx tsc && npm run biome-check && npm run build && cp dist/index.js ../../app/dist - run: cd spec/v3 && cp *.pmtiles ../../app/dist - run: cd js/examples && mkdir ../../app/dist/examples && cp *.html ../../app/dist/examples/ + - run: cd js && npm install && npx typedoc index.ts --out ../app/dist/typedoc - run: cd openlayers/examples && mkdir ../../app/dist/examples/openlayers && cp *.html ../../app/dist/examples/openlayers - name: build_app uses: peaceiris/actions-gh-pages@v3