Bump serialize-javascript and mocha #72
Workflow file for this run
This file contains hidden or 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 CBMC Proof Debugger documentation | |
on: [push, pull_request] | |
jobs: | |
publish: | |
runs-on: macos-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Install mdbook | |
run: brew install mdbook | |
- name: Build documentation | |
run: cd docs && mdbook build && touch book/.nojekyll | |
- name: Publish documentation | |
if: ${{ github.event_name == 'push' && startsWith('refs/heads/main', github.ref) }} | |
uses: JamesIves/[email protected] | |
with: | |
branch: gh-pages | |
folder: docs/book/ |