Merge pull request #182 from LHeng1/branch-fix-help-window #3
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: Build documentation using MarkBind | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
build_and_deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Graphviz | |
run: sudo apt-get install graphviz | |
- name: Install Java | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '11' | |
distribution: 'temurin' | |
- name: Build & Deploy MarkBind site | |
uses: MarkBind/markbind-action@v2 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
rootDirectory: './docs' | |
baseUrl: '/tp' | |
version: '^5.1.0' |