From 169f3c23f90646856317c734bf2ff91e6c10d7a9 Mon Sep 17 00:00:00 2001 From: Sven Date: Thu, 8 Jan 2026 16:57:54 +0100 Subject: [PATCH] Support for gitlab pages --- .gitlab-ci.yml | 9 +++++++++ Gemfile | 3 +++ index.html | 8 ++++++++ 3 files changed, 20 insertions(+) create mode 100644 .gitlab-ci.yml create mode 100644 Gemfile create mode 100644 index.html diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..e8eb944 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,9 @@ +default: + image: ruby:3.2 + +create-pages: + script: + - gem install bundler + - bundle install + - bundle exec jekyll build -d public + pages: true # specifies that this is a Pages job \ No newline at end of file diff --git a/Gemfile b/Gemfile new file mode 100644 index 0000000..109f303 --- /dev/null +++ b/Gemfile @@ -0,0 +1,3 @@ +source "https://rubygems.org" + +gem "jekyll" \ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 0000000..c06cf18 --- /dev/null +++ b/index.html @@ -0,0 +1,8 @@ + + + Home + + +

Hello World!

+ + \ No newline at end of file