mermaid-cli 0.12.2

Open-source AI pair programmer with agentic capabilities. Local-first with Ollama, native tool calling, and beautiful TUI.
Documentation
name: Pages

# Publishes the install scripts (install.sh / install.ps1) to GitHub Pages so
# users can `curl ... | sh` / `irm ... | iex` without cloning the repo. The
# scripts stay canonical at the repo root; this only serves them at a pretty
# URL (https://noahsabaj.github.io/mermaid-cli/install.{sh,ps1}).

on:
  push:
    branches: [main]
    paths:
      - install.sh
      - install.ps1
      - .github/workflows/pages.yml
  workflow_dispatch:

permissions:
  contents: read
  pages: write
  id-token: write

concurrency:
  group: pages
  cancel-in-progress: false

jobs:
  deploy:
    runs-on: ubuntu-latest
    environment:
      name: github-pages
      url: ${{ steps.deployment.outputs.page_url }}
    steps:
      - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0

      - name: Assemble site
        run: |
          mkdir -p _site
          cp install.sh install.ps1 _site/
          cat > _site/index.html <<'HTML'
          <!doctype html>
          <html lang="en">
          <head>
            <meta charset="utf-8">
            <title>Install Mermaid</title>
            <meta http-equiv="refresh" content="0; url=https://github.com/noahsabaj/mermaid-cli">
          </head>
          <body>
            <p>Install Mermaid (no cargo required):</p>
            <pre>curl -fsSL https://noahsabaj.github.io/mermaid-cli/install.sh | sh</pre>
            <pre>irm https://noahsabaj.github.io/mermaid-cli/install.ps1 | iex</pre>
            <p>See <a href="https://github.com/noahsabaj/mermaid-cli">the repository</a>.</p>
          </body>
          </html>
          HTML

      - uses: actions/configure-pages@45bfe0192ca1faeb007ade9deae92b16b8254a0d # v6.0.0
      - uses: actions/upload-pages-artifact@fc324d3547104276b827a68afc52ff2a11cc49c9 # v5.0.0
        with:
          path: _site
      - id: deployment
        uses: actions/deploy-pages@cd2ce8fcbc39b97be8ca5fce6e763baed58fa128 # v5.0.0