You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
echo"VERSION needs to be defined to make a release"
2
+
# Assumes following variables to be defined:
3
+
# OLD_VERSION - previous version against which to create changelog
4
+
# BUILD_VERSION - new version being released
5
+
# GITHUB_USER - contiv
6
+
# GITHUB_TOKEN - your github token
7
+
# USE_RELEASE - if 0 or not set, will make a pre-release
8
+
9
+
if [ -z"$(which github-release)" ];then
10
+
echo"Please install github-release before running this script"
11
+
echo"You may download a release from https://github.com/aktau/github-release/releases or run 'go get github.com/aktau/github-release' if you have Go installed"
7
12
exit 1
8
13
fi
9
14
15
+
10
16
if [ -z"${TAR_FILENAME-}" ];then
11
17
echo"TAR_FILENAME needs to be defined to make a release"
12
18
exit 1
@@ -17,20 +23,22 @@ if [ ! -f "$TAR_FILE" ]; then
17
23
exit 1
18
24
fi
19
25
20
-
if [ -n"$USE_RELEASE" ];then
21
-
if [ -z"$OLD_VERSION" ];then
22
-
echo"A release requires OLD_VERSION to be defined"
23
-
exit 1
24
-
fi
25
-
if [ "$OLD_VERSION"!="none" ];then
26
-
comparison="$OLD_VERSION..HEAD"
27
-
fi
28
-
pre_release=""
29
-
else
30
-
latest_tag=$(git tag | egrep -v "^v"| grep UTC | sort -V | tail -1)
26
+
if [ -z"$BUILD_VERSION" ];then
27
+
echo"A release requires BUILD_VERSION to be defined"
28
+
exit 1
29
+
fi
30
+
31
+
if [ -z"$OLD_VERSION" ];then
32
+
echo"A release requires OLD_VERSION to be defined"
0 commit comments