File tree Expand file tree Collapse file tree 1 file changed +10
-12
lines changed
Expand file tree Collapse file tree 1 file changed +10
-12
lines changed Original file line number Diff line number Diff line change @@ -296,18 +296,16 @@ runs:
296296 fi
297297 fi
298298
299- if [ ${{ steps.platform.outputs.id }} = "win" ]; then
300- if [ "${{ inputs.export-debug }}" = "true" ]; then
301- for file in $(find ./build -name *.pdb); do
302- cp $file "${{ github.workspace }}/output"
303- done
304- for file in $(find ./build -name *.dbg); do
305- cp $file "${{ github.workspace }}/output"
306- done
307- for file in $(find ./build -name *.dSYM); do
308- cp $file "${{ github.workspace }}/output"
309- done
310- fi
299+ if [ "${{ inputs.export-debug }}" = "true" ]; then
300+ for file in $(find ./build -name *.pdb); do
301+ cp $file "${{ github.workspace }}/output"
302+ done
303+ for file in $(find ./build -name *.dbg); do
304+ cp $file "${{ github.workspace }}/output"
305+ done
306+ for file in $(find ./build -name *.dSYM); do
307+ cp $file "${{ github.workspace }}/output"
308+ done
311309 fi
312310
313311 OUTPUT_DIR="${{ github.workspace }}/output"
You can’t perform that action at this time.
0 commit comments