Improve the logic to let source peers be consistent with C++ peers (#… #3
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: gh-pages-mdbook | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| paths: | |
| - 'docs/mdbook/**' | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - 'docs/mdbook/**' | |
| jobs: | |
| gh-pages-mdbook-build: | |
| name: Build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: extractions/setup-just@v3 | |
| - name: Setup mdBook | |
| uses: peaceiris/actions-mdbook@v2 | |
| - name: Install Dependencies | |
| shell: bash | |
| run: sudo apt-get install -y libwayland-dev libxkbcommon-dev # Required for winit | |
| - name: Install mdbook-alerts, mdbook-mermaid | |
| run: cargo install mdbook-alerts mdbook-mermaid | |
| - name: Build | |
| working-directory: docs/mdbook | |
| shell: bash | |
| run: mdbook build | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: book | |
| path: docs/mdbook/book/ | |
| gh-pages-mdbook-deploy: | |
| needs: gh-pages-mdbook-build | |
| if: github.event_name != 'pull_request' | |
| name: Deploy | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Download book | |
| uses: actions/download-artifact@v4 | |
| with: | |
| name: book | |
| path: artifacts/book | |
| - name: Deploy | |
| uses: JamesIves/github-pages-deploy-action@v4.7.3 | |
| with: | |
| branch: gh-pages | |
| folder: artifacts/book | |
| target-folder: docs/book |