Skip to content

Adds json output for coverage report #55

Adds json output for coverage report

Adds json output for coverage report #55

Workflow file for this run

name: GitHub Pages
on:
push:
branches:
- trunk
jobs:
deploy:
runs-on: ubuntu-latest
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
steps:
- uses: actions/checkout@v4
- name: Setup mdbook
uses: peaceiris/actions-mdbook@v2
with:
mdbook-version: 'latest'
- name: Generate book
run: mdbook build ./docs/
- name: Deploy
uses: peaceiris/actions-gh-pages@v4
if: ${{ github.ref == 'refs/heads/trunk' }}
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/book/
commit_message: ${{ github.event.head_commit.message }}