File tree Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Original file line number Diff line number Diff line change 7171 - name : Assure that either artifacts-upload-name or sources-upload-name is set
7272 if : inputs.artifacts-upload-name == '' && inputs.sources-upload-name == ''
7373 run : echo "Please specify either the input parameter 'artifacts-upload-name' or 'sources-upload-name'."; exit 1
74-
74+
75+ - name : (Debug) Log all variables
76+ if : runner.debug == '1'
77+ run : echo "DEBUG log all variables -> $GITHUB_CONTEXT"
78+
7579 - name : Checkout code-graph-analysis-pipeline
7680 uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
7781 with :
@@ -143,6 +147,12 @@ jobs:
143147 name : ${{ inputs.artifacts-upload-name }}
144148 path : temp/${{ inputs.analysis-name }}/artifacts
145149
150+ - name : (Debug) Log folder structure of temp directory
151+ if : runner.debug == '1'
152+ working-directory : temp
153+ run : |
154+ ls -R | grep ":$" | sed -e 's/:$//' -e 's/[^-][^\/]*\//--/g' -e 's/^/ /' -e 's/-/|/'
155+
146156 - name : (Code Analysis) Analyze ${{ inputs.analysis-name }}
147157 working-directory : temp/${{ inputs.analysis-name }}
148158 # Shell type can be skipped if jupyter notebook analysis-results (and therefore conda) aren't needed
You can’t perform that action at this time.
0 commit comments