Skip to content

Add some links to site #23

Add some links to site

Add some links to site #23

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: master
- name: Run tests 📊
run: zig build test
- name: Build 🏗️
run: zig build -Dtarget=wasm32-freestanding -Doptimize=ReleaseFast
- name: Deploy to GH Pages 🚀
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: www