Skip to content

Update README.md

Update README.md #84

Workflow file for this run

name: Build and Deploy to Github Pages
on:
push:
branches:
- main
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v3
with:
persist-credentials: false
- name: Install Zig 🔧
uses: korandoru/setup-zig@v1
with:
zig-version: 0.11.0
- name: Run tests 📊
run: zig build test
- name: Build 🏗️
run: zig build -Dtarget=wasm32-freestanding -Doptimize=ReleaseFast -Dcpu=generic+bulk_memory+atomics+mutable_globals
- name: Deploy to GH Pages 🚀
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: www