GitLab CI
Deploy your Hwaro site using GitLab CI/CD.
Configuration
Add .gitlab-ci.yml to your repository:
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.