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 1b4f7bc commit a520fabCopy full SHA for a520fab
checkout-junit-reports/action.yml
@@ -36,12 +36,18 @@ inputs:
36
runs:
37
using: composite
38
steps:
39
+ - name: Check if JUnit reports SHA artifact exists
40
+ id: junit-reports-sha-check
41
+ uses: lit-Protocol/artifact-exists-action@ff41b0e92208918c585721cbf3e866dfddaf7879 # v0
42
+ with:
43
+ name: ${{ inputs.artifact-name }}
44
+
45
- name: Download JUnit reports SHA artifact
46
+ if: ${{ steps.junit-reports-sha-check.outputs.exists == 'true' }}
47
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4
48
with:
49
name: ${{ inputs.artifact-name }}
50
path: ${{ inputs.artifact-path }}
- continue-on-error: true
51
52
- name: Check JUnit reports SHA
53
id: junit-reports-sha
0 commit comments