Skip to content
This repository was archived by the owner on Jul 1, 2026. It is now read-only.

Logger's emit now uses the current context, or one explicitely provided #64

Logger's emit now uses the current context, or one explicitely provided

Logger's emit now uses the current context, or one explicitely provided #64

Workflow file for this run

name: Deploy Documentation
on:
push:
branches:
- main
env:
ZIG_VERSION: 0.16.0
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: mlugg/setup-zig@v2
with:
version: ${{ env.ZIG_VERSION }}
mirror: 'https://zigmirror.com'
- run: zig build --fetch
- run: zig build docs
- name: Upload Pages artifact
uses: actions/upload-pages-artifact@v4
with:
path: ./zig-out/docs
deploy:
needs: build
runs-on: ubuntu-latest
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4