Skip to content

fix(build): attempt to fix the docs generation #13

fix(build): attempt to fix the docs generation

fix(build): attempt to fix the docs generation #13

Workflow file for this run

name: docs
on:
push:
branches:
- main
jobs:
upload-artifacts:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: mlugg/setup-zig@v1
- run: zig build docs
- uses: actions/upload-pages-artifact@v3
with:
path: zig-out/docs/
deploy-pages:
needs: upload-artifacts
runs-on: ubuntu-latest
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- id: deployment
uses: actions/deploy-pages@v4