We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b1e72e7 commit 03313e6Copy full SHA for 03313e6
.github/workflows/release.yml
@@ -67,11 +67,23 @@ jobs:
67
68
- name: Rename and organize binaries
69
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
79
mkdir -p dist/final
80
for dir in dist/*; do
81
if [ -d "$dir" ] && [ "$dir" != "dist/final" ]; then
82
+ echo "Processing directory: $dir"
83
bin=$(ls "$dir")
- 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"
87
fi
88
done
89
0 commit comments