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.
1 parent 2010213 commit 47d2341Copy full SHA for 47d2341
action.yml
@@ -204,3 +204,11 @@ runs:
204
uses: github/codeql-action/upload-sarif@v2
205
with:
206
sarif_file: ${{ inputs.output }}
207
+ - name: Upload SARIF as debug artefact
208
+ # if we're in debug mode and we got results
209
+ if: ${{ hashFiles(inputs.output) != '' && runner.debug == '1' }}
210
+ uses: actions/upload-artifact@v2
211
+ with:
212
+ name: ${{ inputs.output }}
213
+ path: ${{ inputs.output }}
214
+
0 commit comments