File tree 2 files changed +4
-1
lines changed
2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ if grep -q "panic" screenpipe_output.log; then
4
4
echo " CLI crashed"
5
5
exit 1
6
6
fi
7
- if ! grep -q " Server listening on 127.0.0.1 :3030" screenpipe_output.log; then
7
+ if ! grep -q " Server listening on [::] :3030" screenpipe_output.log; then
8
8
echo " Server did not start correctly"
9
9
exit 1
10
10
fi
Original file line number Diff line number Diff line change @@ -55,19 +55,22 @@ jobs:
55
55
56
56
- name : Upload logs
57
57
uses : actions/upload-artifact@v4
58
+ if : always()
58
59
with :
59
60
name : screenpipe-logs
60
61
path : screenpipe_output.log
61
62
62
63
- name : Upload captured data
63
64
uses : actions/upload-artifact@v4
65
+ if : always()
64
66
with :
65
67
name : screenpipe-data
66
68
path : |
67
69
~/.screenpipe/data/
68
70
69
71
- name : Upload test image
70
72
uses : actions/upload-artifact@v4
73
+ if : always()
71
74
with :
72
75
name : test-image
73
76
path : test_image.png
You can’t perform that action at this time.
0 commit comments