-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathupdate-readme.sh
executable file
·46 lines (41 loc) · 1.22 KB
/
update-readme.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#!/usr/bin/env -S bash -e
########################################################################################################################
# The purpose of this tool is to update the library versions in README.md
########################################################################################################################
PROJECT=$1
RELEASE_VERSION=$2
README=$3
if [ -z "$PROJECT" ]; then
echo "ERROR: Project argument not supplied"
exit 1
fi
if [ -z "$RELEASE_VERSION" ]; then
echo "ERROR: Release version argument not supplied"
exit 1
fi
if [ -z "$README" ]; then
echo "ERROR: readme path not supplied"
exit 1
fi
if ! [ -w "$README" ]; then
echo "ERROR: '$README' is not a valid file"
exit 1
fi
sed -E -i "s/^\*?Version: .*\*?$/*Version: ${RELEASE_VERSION} - $(date +%Y-%m-%d)*/" "$README"
sed -E -i -n "
/\s*<dependency>\s*/ {
p;n;
/<groupId>org\.hibernate[^\/]*<\/groupId>\s*/ {
p;n;
/<artifactId>hibernate[^\/]*<\/artifactId>\s*/ {
p;n;
s/(<version>)[^\/]+(<\/version>)/\1${RELEASE_VERSION}\2/
}
}
}
p;d;
" "$README"
if [ -n "$(git status --porcelain)" ]; then
git add "$README"
git commit -m "[Jenkins release job] README.md updated by release build ${RELEASE_VERSION}"
fi