Support for gitlab pages
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 7s

This commit is contained in:
2026-01-08 16:57:54 +01:00
parent fb7b8a32d2
commit 169f3c23f9
3 changed files with 20 additions and 0 deletions

9
.gitlab-ci.yml Normal file
View File

@@ -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

3
Gemfile Normal file
View File

@@ -0,0 +1,3 @@
source "https://rubygems.org"
gem "jekyll"

8
index.html Normal file
View File

@@ -0,0 +1,8 @@
<html>
<head>
<title>Home</title>
</head>
<body>
<h1>Hello World!</h1>
</body>
</html>