File tree Expand file tree Collapse file tree 1 file changed +10
-3
lines changed Expand file tree Collapse file tree 1 file changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -58,12 +58,19 @@ jobs:
5858 MLM_WEB_ID : ${{secrets.MLM_WEB_ID}}
5959 MLM_WEB_USER_CRED : ${{secrets.MLM_WEB_USER_CRED}}
6060 DISPLAY : " :17.0"
61- - name : Check for screenshots
62- run : ' [ -d ./vscode-test/test-resources/screenshots ] && ls -l ./vscode-test/test-resources/screenshots || echo "No screenshots directory found"'
61+ - name : Show current working directory and contents
62+ run : |
63+ echo "Current working directory:"
64+ pwd
65+ echo "Top-level directory contents:"
66+ ls -la
67+ echo "Contents of .vscode-test/test-resources/screenshots (if exists):"
68+ ls -la .vscode-test/test-resources/screenshots || echo "No screenshots directory found"
69+
6370 - name : Upload Screenshots
6471 uses : actions/upload-artifact@v4
6572 if : always()
6673 with :
6774 name : screenshots-${{ matrix.os }}-${{ matrix.version }}
68- path : ./ vscode-test/test-resources/screenshots
75+ path : .vscode-test/test-resources/screenshots
6976 if-no-files-found : ignore
You can’t perform that action at this time.
0 commit comments