Skip to content

Deploy site to GitHub Pages #40

Deploy site to GitHub Pages

Deploy site to GitHub Pages #40

Workflow file for this run

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