blob: 9ffe01ab8f02e648154d749b4b026d59bed21d9b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/bash
cd ..
# Build and deploy on django branch, only if not a pull request
if [[ ($BUILD_SOURCEBRANCHNAME == 'django') && ($SYSTEM_PULLREQUEST_PULLREQUESTID == '') ]]; then
echo "Building image"
docker build -t pythondiscord/bot:latest .
echo "Pushing image"
docker push pythondiscord/bot:latest
fi
|