fix-broken-build-workflow (#36)
All checks were successful
Build & Push Package / package-and-push (push) Successful in 10s
Python tests (make) / test (push) Successful in 11s

Reviewed-on: #36
Co-authored-by: Josh <josh@joshuaschuett.com>
Co-committed-by: Josh <josh@joshuaschuett.com>
This commit is contained in:
2025-08-26 21:23:08 +00:00
committed by Josh
parent 5f3d54f3d7
commit f2154a9762
2 changed files with 16 additions and 5 deletions

View File

@@ -12,6 +12,9 @@ class Packager:
ignore_patterns=None
):
package_dir = "./deploy/package"
os.makedirs(package_dir, exist_ok=True)
timestamp = datetime.now().strftime("%Y%m%d%H%M")
filename = f"{timestamp}.{name}.zip"
self.outfile = os.path.join("./deploy/package", filename)