feat: add deployment workflow and update site content for Gitea Pages
All checks were successful
Docker Build and Push Demo / Build-Docker-Image (push) Successful in 56s

This commit is contained in:
Grzegorz Matoga
2025-07-24 23:44:43 +02:00
parent f0727f4268
commit 61003adcb6
3 changed files with 118 additions and 0 deletions

31
site/index.html Normal file
View File

@@ -0,0 +1,31 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hello from Gitea Pages!</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<h1>🎉 Hello from Gitea Pages!</h1>
<p>This page is served by Codeberg Pages Server from your Gitea repository.</p>
<p>Built by Gitea Actions and deployed automatically! 🚀</p>
<div class="info">
<h2>How it works:</h2>
<ul>
<li>Push to the <code>pages</code> branch</li>
<li>Pages server automatically serves your content</li>
<li>Access via: <code>username.eurekin.pl</code> or <code>eurekin.pl/username/repo</code></li>
</ul>
</div>
<div class="docker-info">
<h2>🐳 Docker Image Info</h2>
<p>Pull our Docker image:</p>
<pre><code>docker pull git.eurekin.pl/eurekin.pl_cloud/hello-gitea:latest</code></pre>
</div>
</div>
</body>
</html>