Fixes
Signed-off-by: ItalyPaleAle <43508+ItalyPaleAle@users.noreply.github.com>
This commit is contained in:
parent
6170dd8dc9
commit
029d07c0f8
|
@ -292,10 +292,11 @@ jobs:
|
|||
if: always()
|
||||
run: |
|
||||
mkdir -p tmp/result_files
|
||||
echo "Writing to tmp/result_files/${{ matrix.component }}.txt"
|
||||
if [[ "${{ env.CERTIFICATION_FAILURE }}" == "true" ]]; then
|
||||
echo "0" >> tmp/result_files/${{ matrix.component }}
|
||||
echo "0" >> "tmp/result_files/${{ matrix.component }}.txt"
|
||||
else
|
||||
echo "1" >> tmp/result_files/${{ matrix.component }}
|
||||
echo "1" >> "tmp/result_files/${{ matrix.component }}.txt"
|
||||
fi
|
||||
|
||||
- name: Upload result files
|
||||
|
|
|
@ -455,10 +455,11 @@ jobs:
|
|||
run: |
|
||||
mkdir -p tmp/result_files
|
||||
echo "CONFORMANCE_FAILURE=$CONFORMANCE_FAILURE"
|
||||
echo "Writing to tmp/result_files/${{ matrix.component }}.txt"
|
||||
if [[ -v CONFORMANCE_FAILURE ]]; then
|
||||
echo "0" >> tmp/result_files/${{ matrix.component }}
|
||||
echo "0" >> "tmp/result_files/${{ matrix.component }}.txt"
|
||||
else
|
||||
echo "1" >> tmp/result_files/${{ matrix.component }}
|
||||
echo "1" >> "tmp/result_files/${{ matrix.component }}.txt"
|
||||
fi
|
||||
|
||||
- name: Upload result files
|
||||
|
|
Loading…
Reference in New Issue