fix: standardize artifact directory structure for multi-distro support
Build / build-8 (pull_request) Successful in 4m11s
Build / build-9 (pull_request) Successful in 7m4s

Remove per-package subdirectories from build output to align with workflow expectations.
Update deploy workflow paths to match repository-based structure (dist/repository/*.rpm).
This enables consistent artifact handling across different Linux distributions.
This commit is contained in:
2026-03-01 22:07:25 +11:00
parent 76f79a7371
commit 2fca534edf
2 changed files with 8 additions and 8 deletions
+2 -2
View File
@@ -651,8 +651,8 @@ def build_package_docker(
logger = logging.getLogger(__name__)
try:
# Ensure dist directory exists with repository structure
package_dist_dir = dist_dir / repository / package_name
# Ensure dist directory exists with repository structure (no package subdirectory)
package_dist_dir = dist_dir / repository
if not dry_run:
package_dist_dir.mkdir(parents=True, exist_ok=True)