From b466fe561edb43c7c79e15cff9b4b9b48813a0c9 Mon Sep 17 00:00:00 2001 From: reiche Date: Thu, 14 Aug 2025 10:36:09 +0200 Subject: [PATCH] Implementing webpage generation --- .gitea/workflows/demo.yaml | 19 +++++++++++++++++++ .idea/Heilige Liste.iml | 2 +- .idea/misc.xml | 2 +- HeiligeListe.py | 2 ++ 4 files changed, 23 insertions(+), 2 deletions(-) create mode 100644 .gitea/workflows/demo.yaml diff --git a/.gitea/workflows/demo.yaml b/.gitea/workflows/demo.yaml new file mode 100644 index 0000000..394c807 --- /dev/null +++ b/.gitea/workflows/demo.yaml @@ -0,0 +1,19 @@ +name: Gitea Actions Demo +run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀 +on: [push] + +jobs: + Explore-Gitea-Actions: + runs-on: ubuntu-latest + steps: + - run: echo "🎉 The job was automatically triggered by a ${{ gitea.event_name }} event." + - run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by Gitea!" + - run: echo "🔎 The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}." + - name: Check out repository code + uses: actions/checkout@v4 + - run: echo "💡 The ${{ gitea.repository }} repository has been cloned to the runner." + - run: echo "🖥️ The workflow is now ready to test your code on the runner." + - name: List files in the repository + run: | + ls ${{ gitea.workspace }} + - run: echo "🍏 This job's status is ${{ job.status }}." \ No newline at end of file diff --git a/.idea/Heilige Liste.iml b/.idea/Heilige Liste.iml index 7421bd2..00adf1a 100644 --- a/.idea/Heilige Liste.iml +++ b/.idea/Heilige Liste.iml @@ -2,7 +2,7 @@ - + diff --git a/.idea/misc.xml b/.idea/misc.xml index 5e7062a..c251b23 100644 --- a/.idea/misc.xml +++ b/.idea/misc.xml @@ -6,5 +6,5 @@ - + \ No newline at end of file diff --git a/HeiligeListe.py b/HeiligeListe.py index 7643fc7..5b69cdf 100644 --- a/HeiligeListe.py +++ b/HeiligeListe.py @@ -271,9 +271,11 @@ class HeiligeListe: phase0 = line.split(':')[0] phase=phase0[2:] if phase in phases: + now = datetime.datetime.now() tag='_(Released: %s)_' % now.strftime("%d/%m/%Y - %H:%M:%S") linenew='- %s: [%s](Release/HolyList-Latest-Phase-%s.xlsx) %s\n' % (phase,version,phase,tag) + print('Updating README.md for',linenew) fout.write(linenew) else: fout.write(line)