Updated dependencies (#173) #85
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: Render design | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
steps: | |
- name: Checkout the repository | |
uses: actions/checkout@v4 | |
- name: Install Tools | |
run: | | |
pip install pandoc-plantuml-filter | |
sudo apt-get install -y pandoc plantuml | |
- name: Generate Doc | |
run: | | |
mkdir gh-pages | |
cd gh-pages | |
pandoc ../doc/design.md -o design.html --filter pandoc-plantuml | |
pandoc ../doc/system_requirements.md -o system_requirements.html --filter pandoc-plantuml | |
- name: Deploy 🚀 | |
uses: JamesIves/[email protected] | |
with: | |
branch: gh-pages | |
folder: gh-pages | |
single-commit: true | |
force: true |