From 85b0a160f36f5f16722753f5b3cc8399d0bbb414 Mon Sep 17 00:00:00 2001 From: "Michael N. Lipp" <1446020+mnlipp@users.noreply.github.com> Date: Mon, 18 Mar 2024 13:15:59 +0100 Subject: [PATCH] Generate doc on GitLab (#20) --- .gitlab-ci.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..70654cc --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,28 @@ +default: + # Template project: https://gitlab.com/pages/jekyll + # Docs: https://docs.gitlab.com/ee/pages/ + image: ruby:3.2 + before_script: + - git fetch origin gh-pages + - git checkout gh-pages + - gem install bundler + - bundle install +variables: + JEKYLL_ENV: production + LC_ALL: C.UTF-8 +test: + stage: test + script: + - bundle exec jekyll build -d test + artifacts: + paths: + - test + +pages: + stage: deploy + script: + - bundle exec jekyll build -d public + artifacts: + paths: + - public + environment: production