-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathwebsite-release.sh
executable file
·75 lines (64 loc) · 1.64 KB
/
website-release.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
#!/usr/bin/env -S bash -e
function usage() {
echo "Usage:"
echo
echo " $0 [options] <project> <release_version>"
echo
echo " <project> One of [search,validator,ogm,orm,reactive]"
echo " <release_version> The version to release (e.g. 6.0.1)"
echo
echo " Options"
echo
echo " -h Show this help and exit."
echo " -d Dry run; do not push, deploy or publish anything."
}
#--------------------------------------------
# Option parsing
function exec_or_dry_run() {
"${@}"
}
PUSH_CHANGES=true
while getopts 'dhb:' opt; do
case "$opt" in
h)
usage
exit 0
;;
d)
# Dry run
echo "DRY RUN: will not push/deploy/publish anything."
PUSH_CHANGES=false
function exec_or_dry_run() {
echo "DRY RUN; would have executed:" "${@}"
}
;;
\?)
usage
exit 1
;;
esac
done
shift $((OPTIND - 1))
SCRIPTS_DIR="$(readlink -f ${BASH_SOURCE[0]} | xargs dirname)"
PROJECT=$1
RELEASE_VERSION=$2
if [ -z "$PROJECT" ]; then
echo "ERROR: Project not supplied"
exit 1
fi
if [ -z "$RELEASE_VERSION" ]; then
echo "ERROR: Release version argument not supplied"
exit 1
fi
RELEASE_DATE=$(date +%Y-%m-%d)
RELEASE_VERSION_FAMILY=$(echo "$RELEASE_VERSION" | sed -E 's/^([0-9]+\.[0-9]+).*/\1/')
RELEASE_FILE_NAME="./_data/projects/${PROJECT}/releases/${RELEASE_VERSION_FAMILY}/${RELEASE_VERSION}.yml"
cat >> $RELEASE_FILE_NAME <<EOF
date: ${RELEASE_DATE}
summary: bug fixes
EOF
git config user.email [email protected]
git config user.name Hibernate-CI
git add $RELEASE_FILE_NAME
git commit -m "[ORM] ${RELEASE_VERSION}"
exec_or_dry_run git push origin HEAD:production