From 1a999990392f18c9dd6c45187887a2da06c0e4e8 Mon Sep 17 00:00:00 2001 From: robojerk Date: Sat, 6 Sep 2025 10:50:12 -0700 Subject: [PATCH] Fix docker cp command to copy directory contents instead of creating subdirectory - Changed 'docker cp CONTAINER_ID:/workspace/ .' to 'docker cp CONTAINER_ID:/workspace/. .' - The trailing '.' copies the contents of /workspace/ directly to current directory - This prevents creating a workspace/ subdirectory that breaks the upload step - Should fix the issue where .deb files were in wrong location --- .forgejo/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.forgejo/workflows/ci.yml b/.forgejo/workflows/ci.yml index 7df39fa..9026fbb 100644 --- a/.forgejo/workflows/ci.yml +++ b/.forgejo/workflows/ci.yml @@ -226,7 +226,7 @@ jobs: echo "Contents of container /workspace before copy:" docker exec $CONTAINER_ID ls -la /workspace/ 2>/dev/null || echo "Cannot exec into container" - docker cp $CONTAINER_ID:/workspace/ . + docker cp $CONTAINER_ID:/workspace/. . echo "Contents of host directory after copy:" ls -la