diff --git a/.gitignore b/.gitignore index c08f9ad..6e37b40 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ -_site \ No newline at end of file +_site +public diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..706d722 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,10 @@ +pages: + stage: deploy + image: jekyll/jekyll + script: + - jekyll build -d public + artifacts: + paths: + - public + only: + - master \ No newline at end of file