mirror of
https://github.com/fnproject/fn.git
synced 2022-10-28 21:29:17 +03:00
41 lines
984 B
Bash
Executable File
41 lines
984 B
Bash
Executable File
#!/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)
|
|
|