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.
2 parents 924813e + c9726a2 commit c9bb305Copy full SHA for c9bb305
action.yml
@@ -512,7 +512,9 @@ runs:
512
working-directory: ${{ env.tmp_dir }}
513
run: |
514
mkdir -p eclipse_logs/${{ inputs.source_path }}
515
- mv retriever/configuration/*.log retriever/workspace/.metadata/.log eclipse_logs/${{ inputs.source_path }}
+ # Move log files, if they exist.
516
+ find retriever/configuration/ -maxdepth 1 -name "*.log" -exec mv -t eclipse_logs/${{ inputs.source_path }} {} +
517
+ find retriever/workspace/.metadata/ -maxdepth 1 -name ".log" -exec mv -t eclipse_logs/${{ inputs.source_path }} {}
518
519
- name: Upload Eclipse Logs
520
if: failure()
0 commit comments