Regenerate static HTML with Performance card in prefetch #39
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 site to GitHub Pages | |
| on: | |
| push: | |
| branches: [master] | |
| paths: | |
| - '_index.json' | |
| - 'index.html' | |
| - 'CNAME' | |
| - '.nojekyll' | |
| - 'style/**' | |
| - 'colvmn' | |
| - 'docs/**' | |
| - 'FAQ/**' | |
| - 'Timeline/**' | |
| - 'images/**' | |
| - 'Links/**' | |
| - 'repl/**' | |
| - 'browser/**' | |
| - 'bench/**' | |
| - '.github/workflows/pages.yml' | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| pages: write | |
| id-token: write | |
| concurrency: | |
| group: pages | |
| cancel-in-progress: true | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| env: | |
| WASI_SDK_VERSION: "24" | |
| WASI_SDK_FULL: "24.0" | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20' | |
| - name: Regenerate static HTML | |
| run: node colvmn/static-gen.js | |
| - name: Install wasi-sdk | |
| run: | | |
| mkdir -p "$HOME/wasi-sdk" | |
| curl -L -o /tmp/wasi-sdk.tar.gz \ | |
| "https://github.com/WebAssembly/wasi-sdk/releases/download/wasi-sdk-${WASI_SDK_VERSION}/wasi-sdk-${WASI_SDK_FULL}-x86_64-linux.tar.gz" | |
| tar -xzf /tmp/wasi-sdk.tar.gz -C "$HOME/wasi-sdk" --strip-components=1 | |
| - name: Build browser WASM (for /repl/ live interpreter) | |
| run: make browser WASI_SDK="$HOME/wasi-sdk" | |
| - name: Upload Pages artifact | |
| uses: actions/upload-pages-artifact@v3 | |
| with: | |
| path: . | |
| deploy: | |
| needs: build | |
| runs-on: ubuntu-latest | |
| environment: | |
| name: github-pages | |
| url: ${{ steps.deployment.outputs.page_url }} | |
| steps: | |
| - id: deployment | |
| uses: actions/deploy-pages@v4 |