install mermaid-filter #159
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: GHPages | |
| on: | |
| push: | |
| branches: [master] | |
| jobs: | |
| deploy-docs: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| - name: Set up Dependencies | |
| run: | | |
| apt-get update | |
| apt-get install -y python3-pip | |
| pip3 install mermaid-filter | |
| - uses: docker://pandoc/latex:2.9 | |
| with: | |
| args: | | |
| sh build-resources-with-pandoc.sh | |
| - name: Install Packages | |
| run: | | |
| npm i -f | |
| - name: Build all | |
| run: | | |
| npm run build | |
| - name: Deploy | |
| uses: peaceiris/actions-gh-pages@v4 | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| publish_dir: ./docs | |
| force_orphan: true |