Merge pull request #443 from kitsuyui/renovate/codecov-codecov-action… #254
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish Typedoc | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
deploy: | |
name: Publish Typedoc | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v4.0.0 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- run: pnpm install | |
- run: | | |
pnpm build | |
pnpm typedoc | |
- uses: peaceiris/actions-gh-pages@v4 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./build/typedocs | |
cname: ts-playground.typedoc.kitsuyui.com |