diff --git a/.ci/after_deploy.sh b/.ci/after_deploy.sh new file mode 100644 index 00000000..4aa499a0 --- /dev/null +++ b/.ci/after_deploy.sh @@ -0,0 +1,15 @@ +#!/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" diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md index 3e52bc69..e7941f3a 100644 --- a/.github/ISSUE_TEMPLATE.md +++ b/.github/ISSUE_TEMPLATE.md @@ -24,8 +24,13 @@ Any other comments? What versions of software are you using? ---------------------------------------- -**Operating system:** … +**Operating system:** (`uname -a`) … -**`git-secret` version:** … +**`git-secret` path:** (`which git-secret`) … + +**`git-secret` version:** (`git secret --version`) … + +**Shell type and version:** (`$SHELL --version`) … + +**`gpg` version:** (`gpg --version`) … -**Shell type and version:** … diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index e2f37725..666964dd 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -1,7 +1,8 @@