diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..7814905 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,28 @@ +image: shockrah/website:latest + +stages: + - build + - deploy + + +############## ################## ############## +############## Build Site Content ############## +############## ################## ############## + + +build-content: + stage: build + image: shockrah/website:latest + only: + refs: + - master + script: + - cd main-site/ && hugo + artifacts: + exprie_in: 1 week + paths: + - main-site/public/ + + + +