-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcreate-new-release.sh
More file actions
executable file
·69 lines (57 loc) · 1.62 KB
/
create-new-release.sh
File metadata and controls
executable file
·69 lines (57 loc) · 1.62 KB
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
#!/usr/bin/bash
require_clean_work_tree () {
# Update the index
git update-index -q --ignore-submodules --refresh
err=0
# Disallow unstaged changes in the working tree
if ! git diff-files --quiet --ignore-submodules --
then
echo >&2 "cannot $1: you have unstaged changes."
git diff-files --name-status -r --ignore-submodules -- >&2
err=1
fi
# Disallow uncommitted changes in the index
if ! git diff-index --cached --quiet HEAD --ignore-submodules --
then
echo >&2 "cannot $1: your index contains uncommitted changes."
git diff-index --cached --name-status -r --ignore-submodules HEAD -- >&2
err=1
fi
if git diff-index --quiet HEAD --
then
echo >&2 "warning: your index contains untracted files."
# echo >&2 "cannot $1: your index contains untracked files."
# err=1
fi
if [ $err = 1 ]
then
echo >&2 "Please commit or stash them."
exit 1
fi
}
revert_release () {
git reset HEAD~1 --hard
git tag --delete ${release}
echo "Reverted release"
exit 0
}
trap 'revert_release' SIGINT
if [[ $# -ne 1 ]]; then
echo 'create-new-release [new version]'
exit 1
fi
require_clean_work_tree "create a release"
release=$1
lastRelease=$(git tag | sort -V | tail -1)
echo "Creating a new release '${release}'"
sed -i "s/${lastRelease}/${release}/g" README.md
echo "Updated README.md"
git add README.md
git commit -m ${release}
git tag ${release}
echo "Created a tag & a commit"
echo "Release is ready for pushing (press any to push)"
read -n 1 -s -r
git push
git push --tags
echo "Done"