Merge pull request #345 from wesho1107/fix-dg-indent #165
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: MarkBind Action | |
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' # replace with your repo name | |
version: '^5.1.0' |