Examples

GitLab CI

Deploy your Hwaro site using GitLab CI/CD.

Quick Start

Auto-generate the config file:

hwaro tool platform gitlab-ci

Configuration

Or add .gitlab-ci.yml to your repository manually:

image: ghcr.io/hahwul/hwaro:latest

pages:
  script:
    - hwaro build
  artifacts:
    paths:
      - public
  only:
    - main

This configuration uses the official Hwaro Docker image to build your site and deploys the public directory to GitLab Pages.

See Also