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
- Deploy Configuration — Target setup and matchers
- CLI Reference — All deploy command options
- Other platforms: GitHub Pages | Netlify | Vercel