File tree Expand file tree Collapse file tree 1 file changed +18
-2
lines changed Expand file tree Collapse file tree 1 file changed +18
-2
lines changed Original file line number Diff line number Diff line change @@ -28,10 +28,18 @@ jobs:
28
28
status=$?
29
29
if [ $status -ne 0 ]; then
30
30
echo "DRC failed with exit code $status"
31
- cat drc.rpt
32
31
exit $status
33
32
fi
34
33
34
+ - name : Cat DRC Report
35
+ if : always()
36
+ run : |
37
+ if [ -f drc.rpt ]; then
38
+ cat drc.rpt
39
+ else
40
+ echo "DRC report not found"
41
+ fi
42
+
35
43
- name : Upload DRC Report
36
44
uses : actions/upload-artifact@v4
37
45
if : always()
@@ -58,10 +66,18 @@ jobs:
58
66
status=$?
59
67
if [ $status -ne 0 ]; then
60
68
echo "ERC failed with exit code $status"
61
- cat erc.rpt
62
69
exit $status
63
70
fi
64
71
72
+ - name : Cat ERC Report
73
+ if : always()
74
+ run : |
75
+ if [ -f erc.rpt ]; then
76
+ cat erc.rpt
77
+ else
78
+ echo "ERC report not found"
79
+ fi
80
+
65
81
- name : Upload ERC Report
66
82
uses : actions/upload-artifact@v4
67
83
if : always()
You can’t perform that action at this time.
0 commit comments