Files
callstack__agent-device/.github/actions/build-docs/action.yml
Michał Pierzchała 9a3570fa1c feat: Daemon modularization + capability-gated command routing + CI/test pipeline (#20)
* feat: Daemon modularization + capability-gated command routing + CI/test pipeline updates

* update android test

* fix arch

* no serial

* fixup tests locally; update runner on CI

* increase timeout

* drop unnecessary node build
2026-02-08 15:20:59 +01:00

24 lines
586 B
YAML

name: 'Build Docs'
description: 'Setup environment and build documentation'
inputs:
rspress-base:
description: 'The value for RSPRESS_BASE environment variable'
required: true
runs:
using: 'composite'
steps:
- name: Setup toolchain
if: ${{ github.event.action != 'closed' }}
uses: ./.github/actions/setup-node-pnpm
- name: Build docs
if: ${{ github.event.action != 'closed' }}
working-directory: website
env:
NODE_ENV: production
RSPRESS_BASE: ${{ inputs.rspress-base }}
run: pnpm run build
shell: bash