devops(merge): validate zip before uploading

This commit is contained in:
Max Schmitt 2024-03-22 19:28:15 +01:00
parent 4a67437704
commit 0e64524215

View file

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