devops(merge): validate zip before uploading (#30061)
This commit is contained in:
parent
4a67437704
commit
14cd7953f3
|
|
@ -12,6 +12,9 @@ inputs:
|
||||||
runs:
|
runs:
|
||||||
using: "composite"
|
using: "composite"
|
||||||
steps:
|
steps:
|
||||||
|
- name: Integrity check
|
||||||
|
shell: bash
|
||||||
|
run: find "${{ inputs.report_dir }}" -name "*.zip" -exec unzip -t {} \;
|
||||||
- name: Upload blob report to GitHub
|
- name: Upload blob report to GitHub
|
||||||
if: ${{ !cancelled() && github.event_name == 'pull_request' }}
|
if: ${{ !cancelled() && github.event_name == 'pull_request' }}
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue