This is an automated email from the ASF dual-hosted git repository. abesto pushed a commit to branch jenkinsfile-tweaks in repository https://gitbox.apache.org/repos/asf/incubator-zipkin-brave-karaf.git
commit 0cd1637c5a72826686ae7741e017053d5bd3c46b Author: Zoltán Nagy <[email protected]> AuthorDate: Wed Jan 30 14:35:54 2019 +0000 [circleci] Update publish fork check to `apache` Before publishing a snapshot or release, we make double sure that we're on the right fork (ie. the official one). With the move to `apache`, this check needs an update. --- .circleci/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 91ed2c0..a7b9525 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -59,7 +59,7 @@ jobs: name: Publish snapshot command: | # Guard against running this on pull requests or forks - [ "$CIRCLE_PROJECT_USERNAME" == "openzipkin" ] || exit 0 + [ "$CIRCLE_PROJECT_USERNAME" == "apache" ] || exit 0 [ -z "$CIRCLE_PR_NUMBER" ] || exit 0 ./build-support/publish-snapshot.sh @@ -76,7 +76,7 @@ jobs: no_output_timeout: 30m command: | # Guard against running this on pull requests or forks - [ "$CIRCLE_PROJECT_USERNAME" == "openzipkin" ] || exit 0 + [ "$CIRCLE_PROJECT_USERNAME" == "apache" ] || exit 0 [ -z "$CIRCLE_PR_NUMBER" ] || exit 0 ./build-support/publish-stable.sh
