devops(merge): validate zip before uploading (#30061)

This commit is contained in:
Max Schmitt 2024-03-22 21:22:19 +01:00 committed by GitHub
parent 4a67437704
commit 14cd7953f3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -12,6 +12,9 @@ inputs:
runs:
using: "composite"
steps:
- name: Integrity check
shell: bash
run: find "${{ inputs.report_dir }}" -name "*.zip" -exec unzip -t {} \;
- name: Upload blob report to GitHub
if: ${{ !cancelled() && github.event_name == 'pull_request' }}
uses: actions/upload-artifact@v4