Skip to content

Commit

Permalink
ci: fix doc generation with TypeDoc
Browse files Browse the repository at this point in the history
  • Loading branch information
mikaello authored Jan 21, 2024
1 parent 1f2bc29 commit 79d6eb4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,16 @@ on:
jobs:
docs:
runs-on: ubuntu-latest
env:
# renovate: datasource=npm depName=typedoc
typedoc_version: 0.25.6
steps:
- uses: actions/checkout@v3

- name: Build documentation with TypeDoc
run: >
npx typedoc --readme none --disableSources --includeVersion --exclude
"src/mockdata/*" --plugin none --out public src
npx typedoc@$typedoc_version --readme none --disableSources
--includeVersion --exclude "src/mockdata/*" --out public src
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
Expand Down
3 changes: 1 addition & 2 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:base", "npm:unpublishSafe"],
"schedule": ["before 3am on Monday"],
"extends": ["github>mikaello/renovate-presets"],
"packageRules": [
{
"matchUpdateTypes": ["minor", "patch", "pin", "digest"],
Expand Down

0 comments on commit 79d6eb4

Please sign in to comment.