From f0727f4268c008a1080fc748e37f2c7e51ac0383 Mon Sep 17 00:00:00 2001 From: Grzegorz Matoga Date: Thu, 24 Jul 2025 22:55:54 +0200 Subject: [PATCH] fix: add missing print statement for build process impact --- hello.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/hello.py b/hello.py index 1ce4856..d0d8f0c 100644 --- a/hello.py +++ b/hello.py @@ -1,3 +1,4 @@ #!/usr/bin/env python3 print("Hello from a Gitea hosted Docker repo built on the runner! 🚀") -print("This image was built using Gitea Actions and stored in Gitea's registry.") \ No newline at end of file +print("This image was built using Gitea Actions and stored in Gitea's registry.") +print("Change this file to see how it affects the build process.") \ No newline at end of file