barker/deploy.sh

26 lines
520 B
Bash
Raw Permalink Normal View History

2020-12-19 05:12:20 +00:00
#!/usr/bin/env bash
2022-04-03 01:57:12 +00:00
set -euo pipefail
2020-12-19 05:12:20 +00:00
parent_path=$( cd "$(dirname "${BASH_SOURCE[0]}")" || exit ; pwd -P )
cd "$parent_path" || exit
./lint.sh
if [ 1 -eq "$#" ]
then
./version_bump.sh "$1"
else
./version_bump.sh
fi
2020-12-19 05:12:20 +00:00
make build-production
if [ 1 -eq "$#" ]
then
docker tag barker:latest "$1"
else
echo "No version bump"
fi
docker tag barker:latest registry.tanshu.com/barker:latest
docker push registry.tanshu.com/barker:latest
cd "$parent_path/ansible" || exit
ansible-playbook --inventory hosts playbook.yml