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 Project Website to GitHub Pages | |
| on: | |
| push: | |
| branches: [ main ] | |
| paths: | |
| - 'web/landing/**' | |
| - 'api-docs/**' | |
| - '.github/workflows/project-website.yml' | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| pages: write | |
| id-token: write | |
| concurrency: | |
| group: 'pages' | |
| cancel-in-progress: true | |
| jobs: | |
| build-and-deploy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| cache: 'npm' | |
| cache-dependency-path: web/landing/package-lock.json | |
| - name: Install dependencies | |
| working-directory: web/landing | |
| run: npm ci | |
| - name: Build landing site | |
| working-directory: web/landing | |
| run: npm run build | |
| - name: Verify build | |
| working-directory: web/landing | |
| run: | | |
| echo "Build verification:" | |
| ls -la dist/ | |
| echo "Checking docs structure:" | |
| ls -la dist/docs/ || echo "No docs directory found" | |
| echo "Verifying key files:" | |
| test -f dist/index.html && echo "✓ index.html" || echo "✗ index.html missing" | |
| test -f dist/api.html && echo "✓ api.html" || echo "✗ api.html missing" | |
| test -f dist/docs/intro.html && echo "✓ docs/intro.html" || echo "✗ docs/intro.html missing" | |
| - name: Setup GitHub Pages | |
| uses: actions/configure-pages@v4 | |
| - name: Upload to GitHub Pages | |
| uses: actions/upload-pages-artifact@v3 | |
| with: | |
| path: web/landing/dist | |
| - name: Deploy to GitHub Pages | |
| id: deployment | |
| uses: actions/deploy-pages@v4 |