-
Notifications
You must be signed in to change notification settings - Fork 1
/
release
executable file
·76 lines (61 loc) · 1.26 KB
/
release
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
76
#!/usr/bin/env bash
# Sane defaults.
set -euo pipefail
# Find scripts directory.
script="$0"
if test -L "$script"; then
script="$(readlink -f "$0")"
fi
prefix="$(dirname "$script")"
script="$(basename "$script")"
# Print the manual.
help() {
cat <<-EOF >&2
About
Bump and generate a distributable of the add-on.
Usage
$script -h
$script [-x] <path>
Flags
-h Print this manual.
-x Enable debug mode.
EOF
}
# Parse and apply flags.
while getopts ":xh" option; do
case "$option" in
x)
set -x
;;
h)
help
exit
;;
?)
echo "$script: unknown flag '$OPTARG', try -h" >&2
exit
;;
esac
done
# Drop flags by shifting arguments.
shift $((OPTIND - 1))
# Test required arguments.
if test -z "$*"; then
echo "$script: missing required argument, see -h" >&2
exit
fi
# Add-on directory path, e.g. ./Add-on.
target="$1"
# Validate target.
"$prefix/inspect" -V "$target"
# Lint add-on source.
"$prefix/lint" "$target"
# Bump the add-on's version.
"$prefix/bump" "$target"
# Release's title, e.g. Add-on v42.
release="$("$prefix/inspect" -r "$target")"
# Tag, e.g. Add-on/v42.
tag="$("$prefix/inspect" -t "$target")"
# Tag and push.
git tag -m "Release $release" "$tag"
git push --follow-tags