Skip to content

Commit 03313e6

Browse files
committed
f
1 parent b1e72e7 commit 03313e6

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

.github/workflows/release.yml

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,11 +67,23 @@ jobs:
6767

6868
- name: Rename and organize binaries
6969
run: |
70+
echo "Listing dist directory:"
71+
ls -l dist
72+
echo "Listing all subdirectories in dist:"
73+
for dir in dist/*; do
74+
if [ -d "$dir" ]; then
75+
echo "Contents of $dir:"
76+
ls -l "$dir"
77+
fi
78+
done
7079
mkdir -p dist/final
7180
for dir in dist/*; do
7281
if [ -d "$dir" ] && [ "$dir" != "dist/final" ]; then
82+
echo "Processing directory: $dir"
7383
bin=$(ls "$dir")
74-
cp "$dir/$bin" "dist/final/$dir"
84+
echo "Found binary: $bin in $dir"
85+
echo "Copying $dir/$bin to dist/final/$bin"
86+
cp "$dir/$bin" "dist/final/$bin"
7587
fi
7688
done
7789

0 commit comments

Comments
 (0)