File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments