diff options
author | 2019-09-23 18:26:26 +1000 | |
---|---|---|
committer | 2019-09-23 18:26:26 +1000 | |
commit | 083759b2cca39a7a7e49fa30ce6c9bf8f5319a1d (patch) | |
tree | 2296c439ab6ab3d73cbda0b4531e6265d9424242 /scripts/deploy-azure.sh | |
parent | Merge pull request #270 from python-discord/flake8-annotations (diff) | |
parent | Reflect persist module changes in hacktober cog. (diff) |
Docker Refining & Persistent Data Support (#273)
Docker Refining & Persistent Data Support
Diffstat (limited to 'scripts/deploy-azure.sh')
-rwxr-xr-x | scripts/deploy-azure.sh | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/scripts/deploy-azure.sh b/scripts/deploy-azure.sh deleted file mode 100755 index ad7bfb26..00000000 --- a/scripts/deploy-azure.sh +++ /dev/null @@ -1,14 +0,0 @@ -#!/bin/bash - -cd .. - -# Build and deploy on master branch, only if not a pull request -if [[ ($BUILD_SOURCEBRANCHNAME == 'master') && ($SYSTEM_PULLREQUEST_PULLREQUESTID == '') ]]; then - echo "Building image" - docker build -t pythondiscord/seasonalbot:latest -f docker/Dockerfile . - - echo "Pushing image to Docker Hub" - docker push pythondiscord/seasonalbot:latest -else - echo "Skipping deploy" -fi |