Allow type column to wrap with word-break for long types #9
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: Deploy to GitHub Pages | |
| on: | |
| push: | |
| branches: [master] | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| pages: write | |
| id-token: write | |
| concurrency: | |
| group: "pages" | |
| cancel-in-progress: true | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.11' | |
| - name: Install Python dependencies | |
| run: pip install -r scripts/requirements.txt | |
| - name: Clone PathSim repositories for API extraction | |
| run: | | |
| git clone https://github.com/pathsim/pathsim.git ../pathsim | |
| git clone https://github.com/pathsim/pathsim-chem.git ../pathsim-chem | |
| git clone https://github.com/pathsim/pathsim-vehicle.git ../pathsim-vehicle | |
| # Cache historical API versions (they don't change) | |
| - name: Cache versioned API files | |
| id: cache-versions | |
| uses: actions/cache@v4 | |
| with: | |
| path: static/api/versions | |
| key: api-versions-v1 | |
| # Always extract latest API (for src/lib/api/generated/) | |
| - name: Extract latest API | |
| run: python scripts/extract-api.py | |
| # Extract historical versions on cache miss | |
| - name: Extract versioned API | |
| if: steps.cache-versions.outputs.cache-hit != 'true' | |
| run: python scripts/extract-versions.py | |
| # Always regenerate manifests (to pick up new versions) | |
| - name: Generate version manifests | |
| run: python scripts/generate-manifests.py | |
| - name: Prepare notebooks | |
| run: python scripts/prepare-notebooks.py | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20' | |
| cache: 'npm' | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Build | |
| env: | |
| BASE_PATH: '/${{ github.event.repository.name }}' | |
| run: npm run build | |
| - name: Upload artifact | |
| uses: actions/upload-pages-artifact@v3 | |
| with: | |
| path: build | |
| deploy: | |
| needs: build | |
| runs-on: ubuntu-latest | |
| environment: | |
| name: github-pages | |
| url: ${{ steps.deployment.outputs.page_url }} | |
| steps: | |
| - name: Deploy to GitHub Pages | |
| id: deployment | |
| uses: actions/deploy-pages@v4 |