Skip to content

Commit f1cf04b

Browse files
authored
Change copy command for dSYM files to use directories
1 parent ae23b26 commit f1cf04b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -303,8 +303,8 @@ runs:
303303
for file in $(find ./build -name *.dbg); do
304304
cp $file "${{ github.workspace }}/output"
305305
done
306-
for file in $(find ./build -name *.dSYM); do
307-
cp $file "${{ github.workspace }}/output"
306+
for dir in $(find ./build -name *.dSYM); do
307+
cp -R $dir "${{ github.workspace }}/output"
308308
done
309309
fi
310310

0 commit comments

Comments
 (0)