10 lines
476 B
Bash
10 lines
476 B
Bash
#!/bin/bash
|
|
|
|
REPOSITORY=https://github.com/thepracticaldev/dev.to_private/
|
|
REVISION="$(git rev-parse HEAD)"
|
|
COMMIT_AUTHOR=$(git --no-pager log -1 --pretty=format:'%an')
|
|
PAYLOAD='{ "environment":"production", "repository":"'${REPOSITORY}'", "revision":"'${REVISION}'", "username":"'${COMMIT_AUTHOR}'"}'
|
|
curl -X POST \
|
|
-H "Content-Type: application/json" \
|
|
-d "${PAYLOAD}" \
|
|
"https://airbrake.io/api/v4/projects/${AIRBRAKE_PROJECT_ID}/deploys?key=${AIRBRAKE_PROJECT_KEY}"
|