.gitlab-ci.yml hinzufügen

This commit is contained in:
Sascha Bräuer 2021-02-12 21:21:10 +00:00
parent 1f3bdf3818
commit 0bf963aba9
1 changed files with 16 additions and 0 deletions

16
.gitlab-ci.yml Normal file
View File

@ -0,0 +1,16 @@
stages:
- build
- deploy
build:
stage: build
image: jojomi/hugo
script:
- hugo version
- git submodule update --init --recursive
- hugo -d public_html
artifacts:
paths:
- public_html
only:
- master