changed workflow to build the files during deploy action
Deploy static site / deploy (push) Successful in 1m12s

This commit is contained in:
2026-04-23 14:28:05 +02:00
parent 032969aca4
commit 31232ec925
4 changed files with 13 additions and 54 deletions
+11
View File
@@ -12,6 +12,17 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.x"
- name: Install dependencies
run: pip install pyyaml
- name: Build site
run: python build.py
- name: Install rsync
run: sudo apt-get update && sudo apt-get install -y rsync
+2
View File
@@ -0,0 +1,2 @@
public/de
public/en
-27
View File
@@ -1,27 +0,0 @@
<!DOCTYPE html>
<html lang="de">
<head>
<meta name="robots" content="noindex nofollow">
<link rel="stylesheet" href="../styles.css">
<title>Persönliche Webseite</title>
</head>
<body>
<nav>
<a class="navbar" href="../en/index.html">English</a>
</nav>
<div id="navbar">
<a href="#about">About</a>
<a href="#why">Why</a>
</div>
<header id="about">
<h1>Hi, ich bin Marco</h1>
<p>und das ist meine Webseite</p>
</header>
<p>Ich bin Softwareentwickler aus Deutschland.<br> Zu meinen Hobbys gehören Bouldern, Gaming, Wandern und Kochen.<br> Ich interessiere mich für Musik (vor allem Metal), Konzertbesuche, FOSS-Projekte und Datenhoheit.<br> Menschen, die feste Ideale und eigene Meinungen haben, schätze ich am meisten! Ich würde mich freuen, deine zu hören.<br> Auf dieser Seite werde ich alles posten, was mir gerade durch den Kopf geht, und es wird keine feste Struktur geben, also habt bitte etwas Nachsicht.</p>
<h2 id="why">Wieso?</h2>
<p>In Zeiten von KI-'Slop' bewirkt ein wenig meschlichkeit sehr viel.<br> Ich lese gerne blogs und posts die von Menschen geschrieben werden, also wollte ich meinen eigenen schreiben.<br> Suchmaschinen wie Kagi, die einen das 'small-web' durchsuchen lassen, werden immer populärer. Die kreativen Websites von anderen Leuten zu sehen hat mich ebenso inspiriert<br> und meine HTML und CSS Fähigkeiten aufzufrischen schadet auch nicht.<br> Wird diese Website einen Schönheitswettbewerb gewinnen? Nein.<br> Doch wenigstens ist sie handgemacht.</p>
</body>
</html>
-27
View File
@@ -1,27 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="robots" content="noindex nofollow">
<link rel="stylesheet" href="../styles.css">
<title>Personal Website</title>
</head>
<body>
<nav>
<a class="navbar" href="../de/index.html">Deutsch</a>
</nav>
<div id="navbar">
<a href="#about">About</a>
<a href="#why">Why</a>
</div>
<header id="about">
<h1>Hi, I'm Marco</h1>
<p>and this is my website</p>
</header>
<p>I'm a software developer from Germany.<br> My hobbies include bouldering, gaming, hiking and cooking.<br> I'm interested in music (mostly metal), visiting concerts, FOSS-Projects and Data-Sovereignty.<br> People I value the most are those with firm ideals and own opinions! I'd love to hear yours.<br> On this page I'll post whatever is on my mind and it will have no structure, so bear with me.</p>
<h2 id="why">Why?</h2>
<p>In times of AI-slop, a little humanity goes a long way.<br> I love reading blogs and posts made by humans, so I decided to create my own.<br> Search-engines like Kagi, that allow you to search the 'small web', grow more popular.<br> Seeing other people's creative websites inspired me as well and on top of that:<br> I'm refreshing some HTML and CSS skills!<br> Will this website win a beauty contest? No.<br> But at least there's a human behind it.</p>
</body>
</html>