Add auto docs build with repository actions.
Some checks failed
/ build_docs (push) Failing after 52s

This commit is contained in:
Madeorsk 2025-01-13 00:36:50 +01:00
parent 20360fc412
commit ca8e4fe619
Signed by: Madeorsk
GPG key ID: 677E51CA765BB79F
2 changed files with 24 additions and 4 deletions

View file

@ -0,0 +1,24 @@
on:
push:
tags:
- "*"
jobs:
build_docs:
runs-on: docker
container:
image: docker.zeptotech.net/zeptotech/zig-yarn:1.1.0
credentials:
username: ${{ vars.DOCKER_REGISTRY_USERNAME }}
password: ${{ secrets.DOCKER_REGISTRY_PASSWORD }}
steps:
- uses: actions/checkout@v4
- run: mkdir -p artifact/api
- run: (cd docs && corepack enable && yarn install)
- run: (cd docs && yarn docs:build)
- run: mv docs/.vitepress/dist/* artifact
- run: zig build docs
- run: mv zig-out/docs/* artifact/api
- uses: actions/upload-artifact@v4
with:
name: docs
path: artifact

View file

@ -1,4 +0,0 @@
#!/bin/sh
yarn docs:build
(cd .vitepress/dist && tar cvzf docs.tar.gz * && mv docs.tar.gz ../..)