Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion checkout-junit-reports/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,18 @@ inputs:
runs:
using: composite
steps:
- name: Check if JUnit reports SHA artifact exists
id: junit-reports-sha-check
uses: lit-Protocol/artifact-exists-action@ff41b0e92208918c585721cbf3e866dfddaf7879 # v0
with:
name: ${{ inputs.artifact-name }}

- name: Download JUnit reports SHA artifact
if: ${{ steps.junit-reports-sha-check.outputs.exists == 'true' }}
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4
with:
name: ${{ inputs.artifact-name }}
path: ${{ inputs.artifact-path }}
continue-on-error: true

- name: Check JUnit reports SHA
id: junit-reports-sha
Expand Down