Skip to content

Commit

Permalink
Fix github action for building the docs page
Browse files Browse the repository at this point in the history
  • Loading branch information
khdlr committed Mar 20, 2024
1 parent d13d7a3 commit 2c5ebab
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/typedoc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- run: npm ci
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
- run: yarn install --frozen-lockfile
# Generate your TypeDoc documentation
- run: npx typedoc
- run: yarn docs
# https://github.com/actions/upload-pages-artifact
- uses: actions/upload-pages-artifact@v2
- uses: actions/upload-pages-artifact@v3
with:
path: ./docs # This should be your TypeDoc "out" path.
deploy:
Expand Down

0 comments on commit 2c5ebab

Please sign in to comment.