commit e19ac8c0cc8b071c5f2c455a8d1f78370949dcfe parent edd12ca03bc129c4e12dc706dda5aa1df86f931d Author: Kévin Le Gouguec <kevin.legouguec@gmail.com> Date: Thu, 26 Nov 2020 23:53:34 +0100 Add CI configuration Diffstat:
| A | .gitlab-ci.yml | | | 26 | ++++++++++++++++++++++++++ |
1 file changed, 26 insertions(+), 0 deletions(-)
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml @@ -0,0 +1,26 @@ +image: alpine:latest + +stages: + - build + - publish + +make-site: + stage: build + script: + - apk add --no-cache make + - make site + artifacts: + paths: + - public + +pages: + stage: publish + dependencies: + - make-site + only: + - master + script: + - "true" + artifacts: + paths: + - public