-
Notifications
You must be signed in to change notification settings - Fork 405
/
release.sh
executable file
·40 lines (32 loc) · 984 Bytes
/
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
#!/bin/bash
set -exuo pipefail
user="fnproject"
image="fnserver"
# ensure working dir is clean
git status
if [[ -z $(git status -s) ]]
then
echo "tree is clean"
else
echo "tree is dirty, please commit changes before running this"
exit 1
fi
version_file="api/version/version.go"
if [ -z $(grep -m1 -Eo "[0-9]+\.[0-9]+\.[0-9]+" $version_file) ]; then
echo "did not find semantic version in $version_file"
exit 1
fi
perl -i -pe 's/\d+\.\d+\.\K(\d+)/$1+1/e' $version_file
version=$(grep -m1 -Eo "[0-9]+\.[0-9]+\.[0-9]+" $version_file)
echo "Version: $version"
make docker-build
# Push the version bump and tags laid down previously
git add -u
git commit -m "$image: v$version release [skip ci]"
git tag -f -a "v$version" -m "version v$version"
git push --tags origin master
# Finally, push docker images
docker tag $user/$image:latest $user/$image:$version
docker push $user/$image
(cd images/fn-test-utils && ./release.sh)
(cd images/fn-status-checker && ./release.sh)