14 lines
216 B
Bash
Executable File
14 lines
216 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
echo "deploying image"
|
|
deploymentrepo="$TMP/deployments"
|
|
|
|
cd $deploymentrepo
|
|
|
|
git add . \
|
|
&& git commit -m "Added release $SERVICE: ${COMMIT_SHA:0:10}" \
|
|
&& git pull --rebase \
|
|
&& git push
|