File tree Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change 29
29
- name : Get machine's first IPv4 address for eth0
30
30
id : ip
31
31
run : |
32
- echo ::set-output name= ETHER:: $(sudo ip addr show dev eth0 | egrep " ^(\ )+inet\ " | head -1 | tr -s " " | cut -d " " -f 3 | cut -d "/" -f 1)
32
+ echo " ETHER= $(sudo ip addr show dev eth0 | egrep ' ^(\ )+inet\ ' | head -1 | tr -s ' ' | cut -d ' ' -f 3 | cut -d '/' -f 1)" >> $GITHUB_OUTPUT
33
33
34
34
- name : Show the IPs via vars
35
35
run : |
@@ -162,6 +162,10 @@ jobs:
162
162
run : |
163
163
pipetty ccze -A < cold_cache.txt
164
164
165
+ - name : " ERRORS/WARNINGS: cold_cache.txt"
166
+ run : |
167
+ grep -e "error" -e "warn" cold_cache.txt | pipetty ccze -A || true
168
+
165
169
- name : " JSON: cold_cache.txt"
166
170
run : |
167
171
grep '^{"' cold_cache.txt | pipetty jq .
@@ -191,6 +195,10 @@ jobs:
191
195
echo "--------------------------------------------------------------"
192
196
grep '^{"' warm_cache.txt | pipetty jq .
193
197
198
+ - name : " ERRORS/WARNINGS: warm_cache.txt"
199
+ run : |
200
+ grep -e "error" -e "warn" warm_cache.txt | pipetty ccze -A || true
201
+
194
202
- name : " JSON: warm_cache.txt"
195
203
run : |
196
204
grep '^{"' warm_cache.txt | pipetty jq .
You can’t perform that action at this time.
0 commit comments