Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/maymeow/hugo-builder

🐳 Docker image for CI to build pages with Hugo
https://github.com/maymeow/hugo-builder

ci docker gitlab gitlab-ci hugo

Last synced: 23 days ago
JSON representation

🐳 Docker image for CI to build pages with Hugo

Awesome Lists containing this project

README

        

# hugo-builder
Docker image for CI to build pages with Hugo

## How to use?

Example usage with GitlabCi and gitlab pages

```yaml
image: maymeow/hugo-builder:v0.71.1

pages:
script:
- hugo
artifacts:
expire_in: 1 week
paths:
- public
only:
- master
tags:
- docker
- digitalocean

```