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 c769c5a commit 70bc443Copy full SHA for 70bc443
.github/workflows/build.yml
@@ -140,6 +140,13 @@ jobs:
140
for artifact_dir in */; do
141
artifact_name=$(basename "$artifact_dir")
142
echo "Processing artifact: $artifact_name"
143
+
144
+ # Skip the bin directory itself
145
+ if [[ "$artifact_name" == "bin" ]]; then
146
+ echo "Skipping bin directory"
147
+ continue
148
+ fi
149
150
if [[ "$artifact_name" == *"windows"* ]]; then
151
# Find the .exe file and copy it
152
exe_file=$(find "$artifact_dir" -name "*.exe" -type f | head -1)
0 commit comments