mirror of
https://github.com/sobolevn/git-secret
synced 2024-10-31 21:20:29 +00:00
5f2d3b3c1c
Changes: 1. Adds `after_deploy` hook in travis.yml file 2. Adds `.ci/after_deploy.sh` script to trigger metadata calculation Closes #89
16 lines
461 B
Bash
16 lines
461 B
Bash
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
# This file is required, because for some reason
|
|
# travis deploys do not trigger metadata calculation.
|
|
# See: https://github.com/sobolevn/git-secret/issues/89
|
|
|
|
# This file is only called after successful deploy.
|
|
|
|
# We need to execute custom call to the Bintray API:
|
|
curl -X POST \
|
|
--user "sobolevn:$BINTRAY_API_KEY" \
|
|
-H "X-GPG-PASSPHRASE: $BINTRAY_GPG_PASS" \
|
|
"https://api.bintray.com/calc_metadata/sobolevn/$GITSECRET_DIST"
|