aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorGravatar Joseph Banks <[email protected]>2019-10-01 17:31:59 +0100
committerGravatar Joseph Banks <[email protected]>2019-10-01 17:31:59 +0100
commite5b724ec617f3ca82f6491329fca2cd17e103bdb (patch)
treee24d61c0b7b5ccb4ff08e596ca67fb61acb4367f /scripts
parentMake tests work with Union converter (diff)
parentMerge branch 'master' into add-role-info-command (diff)
Merge branch 'add-role-info-command' of github.com:python-discord/bot into add-role-info-command
Diffstat (limited to 'scripts')
-rw-r--r--scripts/deploy-azure.sh12
1 files changed, 0 insertions, 12 deletions
diff --git a/scripts/deploy-azure.sh b/scripts/deploy-azure.sh
deleted file mode 100644
index ed4b719e2..000000000
--- a/scripts/deploy-azure.sh
+++ /dev/null
@@ -1,12 +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/bot:latest .
-
- echo "Pushing image"
- docker push pythondiscord/bot:latest
-fi