Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/maymeow/hugo-builder
- Owner: MayMeow
- License: mit
- Created: 2020-05-31T21:11:35.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-05-31T21:20:25.000Z (over 4 years ago)
- Last Synced: 2024-10-25T13:19:09.758Z (2 months ago)
- Topics: ci, docker, gitlab, gitlab-ci, hugo
- Language: Dockerfile
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.1pages:
script:
- hugo
artifacts:
expire_in: 1 week
paths:
- public
only:
- master
tags:
- docker
- digitalocean```