From 7444ef9029bb942fde49ed987a3884293c00317d Mon Sep 17 00:00:00 2001 From: Nikhil Badyal Date: Tue, 24 Dec 2024 13:34:48 +0530 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20Add=20patch=20version=20to=20file?= =?UTF-8?q?=20name?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app.py b/src/app.py index 78b4d37..d3f94a4 100644 --- a/src/app.py +++ b/src/app.py @@ -81,7 +81,7 @@ class APP(object): """ current_date = datetime.now(timezone(time_zone)) formatted_date = current_date.strftime("%Y%b%d_%I%M%p").upper() - return f"Re-{self.app_name}-{slugify(self.app_version)}-{formatted_date}-output.apk" + return f"Re-{self.app_name}-app-version{slugify(self.app_version)}-{formatted_date}-patch-version-{slugify(self.resource["patches"]["version"])}output.apk" def __str__(self: "APP") -> str: """Returns the str representation of the app."""