File tree Expand file tree Collapse file tree 3 files changed +10
-4
lines changed Expand file tree Collapse file tree 3 files changed +10
-4
lines changed Original file line number Diff line number Diff line change 65
65
path : |
66
66
out/jreleaser/trace.log
67
67
out/jreleaser/output.properties
68
+
69
+ - name : Deploy
70
+ uses : peaceiris/actions-gh-pages@v3
71
+ with :
72
+ github_token : ${{ secrets.GITHUB_TOKEN }}
73
+ publish_dir : ./target/generated-docs
Original file line number Diff line number Diff line change 6
6
:project-version: 0.2.0
7
7
:site-url: https://redislabs-field-engineering.github.io/redis-enterprise-kafka
8
8
9
- image:https://github.com/ {project-owner}/{project-name}/actions/workflows/early-access.yml/badge.svg ["Build Status", link="https://github.com/{project-owner}/{project-name}/actions"]
9
+ image:https://img.shields.io/github/workflow/status/ {project-owner}/{project-name}/EarlyAccess?logo=github ["Build Status", link="https://github.com/{project-owner}/{project-name}/actions"]
10
10
image:https://codecov.io/gh/{project-owner}/{project-name}/branch/master/graph/badge.svg?token=MTMRRGEWBD["Coverage", link="https://codecov.io/gh/{project-owner}/{project-name}"]
11
11
12
12
---
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ function clean_up {
28
28
then
29
29
echo -e " Bye!\n"
30
30
else
31
- echo -e $1
31
+ echo -e " $1 "
32
32
fi
33
33
}
34
34
@@ -39,15 +39,15 @@ function test_systems_available {
39
39
until $( curl --output /dev/null --silent --head --fail http://localhost:$1 ) ; do
40
40
printf ' .'
41
41
sleep 2
42
- let COUNTER+=1
42
+ (( COUNTER+= 1 ))
43
43
if [[ $COUNTER -gt 30 ]]; then
44
44
MSG=" \nWARNING: Could not reach configured kafka system on http://localhost:$1 \nNote: This script requires curl.\n"
45
45
46
46
if [[ " $OSTYPE " == " darwin" * ]]; then
47
47
MSG+=" \nIf using OSX please try reconfiguring Docker and increasing RAM and CPU. Then restart and try again.\n\n"
48
48
fi
49
49
50
- echo -e $MSG
50
+ echo -e " $MSG "
51
51
clean_up " $MSG "
52
52
exit 1
53
53
fi
You can’t perform that action at this time.
0 commit comments