docs(whitepaper): Add BENCH-001–006 complete results with analysis #2
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: | ||
| workflow_dispatch: | ||
| workflow: gh-pages | ||
| permissions: | ||
| contents: write | ||
| jobs: | ||
| deploy: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Prepare gh-pages | ||
| run: | | ||
| mkdir -p gh-pages | ||
| cp docs/website/index.html gh-pages/index.html | ||
| - name: Push to GitHub | ||
| run: | | ||
| git config user.email "playra@example.com" | ||
| git add gh-pages/ | ||
| git commit -m "feat: add GitHub Pages website" | ||
| git push origin gh-pages | ||