devops(merge): validate zip before uploading
This commit is contained in:
parent
4a67437704
commit
0e64524215
|
|
@ -12,6 +12,12 @@ inputs:
|
||||||
runs:
|
runs:
|
||||||
using: "composite"
|
using: "composite"
|
||||||
steps:
|
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
|
- 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