Last active
December 24, 2015 17:29
-
-
Save 1syo/6835382 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
export DEPLOY=true | |
export WERCKER_AIRBRAKE_NOTIFY_API_KEY=1qazxsw23edcvfr4 | |
export WERCKER_AIRBRAKE_NOTIFY_HOST=example.com | |
export WERCKER_AIRBRAKE_NOTIFY_SECURE=true | |
#export WERCKER_AIRBRAKE_NOTIFY_ENVIRONMENT=preview | |
export WERCKER_AIRBRAKE_NOTIFY_MESSAGE=OK | |
export WERCKER_GIT_DOMAIN=github.com | |
export WERCKER_GIT_OWNER=1syo | |
export WERCKER_GIT_REPOSITORY=watchdog | |
export WERCKER_GIT_COMMIT=bd6db3193be624f6a52c8d24461b2a72e9926438 | |
export WERCKER_APPLICATION_OWNER_NAME=1syo | |
export WERCKER_APPLICATION_NAME=watchdog | |
export WERCKER_DEPLOYTARGET_NAME=heroku | |
export WERCKER_STARTED_BY=1syo | |
export WERCKER_RESULT=passed | |
info() { | |
echo $1; | |
} | |
fail() { | |
echo $1 | |
exit 0 | |
} | |
success() { | |
echo $1 | |
exit 1 | |
} | |
. ./run.sh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment