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 71
71
- name : Assure that either artifacts-upload-name or sources-upload-name is set
72
72
if : inputs.artifacts-upload-name == '' && inputs.sources-upload-name == ''
73
73
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
+
75
79
- name : Checkout code-graph-analysis-pipeline
76
80
uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
77
81
with :
@@ -143,6 +147,12 @@ jobs:
143
147
name : ${{ inputs.artifacts-upload-name }}
144
148
path : temp/${{ inputs.analysis-name }}/artifacts
145
149
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
+
146
156
- name : (Code Analysis) Analyze ${{ inputs.analysis-name }}
147
157
working-directory : temp/${{ inputs.analysis-name }}
148
158
# 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