Skip to content

Commit c4c1f8e

Browse files
authored
Change copy command for dSYM files to use directories (#34)
* Change copy command for dSYM files to use directories * Change cp to use -R for dSYM file copying
1 parent ae23b26 commit c4c1f8e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
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

combine/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,8 @@ runs:
8080
# Copy the other debug files from android and macos/ios
8181
cp ./artifacts/geode-build-android32/*.dbg out/ || true
8282
cp ./artifacts/geode-build-android64/*.dbg out/ || true
83-
cp ./artifacts/geode-build-mac/*.dSYM out/ || true
84-
cp ./artifacts/geode-build-ios/*.dSYM out/ || true
83+
cp -R ./artifacts/geode-build-mac/*.dSYM out/ || true
84+
cp -R ./artifacts/geode-build-ios/*.dSYM out/ || true
8585
echo "output=$(realpath out)" >> $GITHUB_OUTPUT
8686
8787
- uses: geekyeggo/delete-artifact@v5

0 commit comments

Comments
 (0)