We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 120c964 commit 2240caeCopy full SHA for 2240cae
.github/workflows/build.yml
@@ -66,7 +66,13 @@ jobs:
66
uses: actions/checkout@v6
67
68
- name: Build
69
- run: make
+ run: |
70
+ make 2>&1 | tee /tmp/build.log || {
71
+ while IFS= read -r line; do
72
+ echo "::error::$line"
73
+ done < /tmp/build.log
74
+ exit 1
75
+ }
76
77
- name: Verify binary
78
run: ./thinproxy -V
@@ -126,7 +132,13 @@ jobs:
126
132
127
133
128
134
129
135
136
137
138
139
140
141
130
142
131
143
144
0 commit comments