diff --git a/script.sh b/script.sh new file mode 100644 index 0000000..c0c4a38 --- /dev/null +++ b/script.sh @@ -0,0 +1,19 @@ +#!/usr/bin/env bash + +echo 'Updating Sentry Project: '${PLUGIN_SENTRY_PROJECT} +echo 'New Release: '${DRONE_REPO}':'${DRONE_COMMIT_SHA} + +curl https://sentry.kmlabz.com/api/0/organizations/kmlabz/releases/ \ + -X POST \ + -H 'Authorization: Bearer '${SENTRY_TOKEN} \ + -H 'Content-Type: application/json' \ + -d ' + { + "version": "'${DRONE_BUILD_NUMBER}'", + "refs": [{ + "repository":"'${DRONE_REPO}'", + "commit":"'${DRONE_COMMIT_SHA}'" + }], + "projects":["'${PLUGIN_SENTRY_PROJECT}'"] +} +' \ No newline at end of file