Fix case sensitivity in README file references for consistency

This commit is contained in:
2026-02-27 22:44:19 +00:00
parent 6877e44293
commit 58180ff463
2 changed files with 2 additions and 2 deletions

View File

@@ -23,5 +23,5 @@ jobs:
run: | run: |
git config --local user.email "action@gitea.com" git config --local user.email "action@gitea.com"
git config --local user.name "Gitea Action" git config --local user.name "Gitea Action"
git add README.MD git add README.md
git diff --quiet && git diff --staged --quiet || (git commit -m "Update profile stats" && git push) git diff --quiet && git diff --staged --quiet || (git commit -m "Update profile stats" && git push)

View File

@@ -7,7 +7,7 @@ def generate_stats():
return f"✅ My Gitea instance is alive and well!\n🕒 Last update: {now}." return f"✅ My Gitea instance is alive and well!\n🕒 Last update: {now}."
def main(): def main():
readme_path = "README.MD" readme_path = "README.md"
if not os.path.exists(readme_path): if not os.path.exists(readme_path):
print(f"{readme_path} not found!") print(f"{readme_path} not found!")