Add .gitlab-ci.yml

This commit is contained in:
Chris Cowley 2024-01-18 19:22:04 +00:00
parent 58bf4b796d
commit 0913b43b0b

13
.gitlab-ci.yml Normal file
View file

@ -0,0 +1,13 @@
# The Docker image that will be used to build your app
image: klakegg/hugo:latest
pages:
script:
- hugo --gv --minify
artifacts:
paths:
# The folder that contains the files to be exposed at the Page URL
- public
rules:
# This ensures that only pushes to the default branch will trigger
# a pages deploy
- if: $CI_COMMIT_REF_NAME == $CI_DEFAULT_BRANCH