1
0
mirror of https://github.com/containous/traefik.git synced 2025-01-05 09:17:52 +03:00
traefik/script/deploy.sh

34 lines
898 B
Bash
Raw Normal View History

#!/usr/bin/env bash
set -e
if [ -n "$TRAVIS_TAG" ]; then
echo "Deploying..."
2016-02-22 17:01:00 +03:00
else
echo "Skipping deploy"
exit 0
fi
2017-08-28 12:48:03 +03:00
git config --global user.email "$TRAEFIKER_EMAIL"
git config --global user.name "Traefiker"
# load ssh key
echo "Loading key..."
2017-08-28 12:48:03 +03:00
openssl aes-256-cbc -K $encrypted_f9e835a425bc_key -iv $encrypted_f9e835a425bc_iv -in .travis/traefiker_rsa.enc -out ~/.ssh/traefiker_rsa -d
eval "$(ssh-agent -s)"
2017-08-28 12:48:03 +03:00
chmod 600 ~/.ssh/traefiker_rsa
ssh-add ~/.ssh/traefiker_rsa
# update traefik-library-image repo (official Docker image)
echo "Updating traefik-library-imag repo..."
git clone git@github.com:containous/traefik-library-image.git
cd traefik-library-image
2019-03-19 11:04:04 +03:00
./updatev2.sh $VERSION
git add -A
echo $VERSION | git commit --file -
echo $VERSION | git tag -a $VERSION --file -
git push -q --follow-tags -u origin master > /dev/null 2>&1
cd ..
rm -Rf traefik-library-image/
2017-08-28 12:48:03 +03:00
echo "Deployed"