Add .gitlab-ci.yml
This commit is contained in:
parent
58bf4b796d
commit
0913b43b0b
1 changed files with 13 additions and 0 deletions
13
.gitlab-ci.yml
Normal file
13
.gitlab-ci.yml
Normal 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
|
Loading…
Add table
Reference in a new issue