From a7807106f5116f38f4f0a1a75b9ec971a8c1683c Mon Sep 17 00:00:00 2001 From: Jaco Greeff Date: Wed, 31 Jan 2018 12:04:04 +0100 Subject: [PATCH] [beta] Explicitly add branch name (#7754) * [beta] Explicitly add branch name * Fix cargo update branch to beta --- js-old/scripts/push-precompiled.sh | 3 ++- js/scripts/push-cargo.sh | 2 +- js/scripts/push-precompiled.sh | 3 ++- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/js-old/scripts/push-precompiled.sh b/js-old/scripts/push-precompiled.sh index 30eee1230..71278a06e 100755 --- a/js-old/scripts/push-precompiled.sh +++ b/js-old/scripts/push-precompiled.sh @@ -4,8 +4,9 @@ set -e # variables PVER="1-9" PTYPE="v1" +TRACK="beta" UTCDATE=`date -u "+%Y%m%d-%H%M%S"` -PRE_REPO="js-dist-paritytech/parity-${CI_BUILD_REF_NAME}-${PVER}-${PTYPE}.git" +PRE_REPO="js-dist-paritytech/parity-${TRACK}-${PVER}-${PTYPE}.git" PRE_REPO_TOKEN="https://${GITHUB_JS_PRECOMPILED}:@github.com/${PRE_REPO}" BASEDIR=`dirname $0` diff --git a/js/scripts/push-cargo.sh b/js/scripts/push-cargo.sh index f776e54e5..83f5a199b 100755 --- a/js/scripts/push-cargo.sh +++ b/js/scripts/push-cargo.sh @@ -4,7 +4,7 @@ set -e # variables PVER="1-9" UTCDATE=`date -u "+%Y%m%d-%H%M%S"` -BRANCH=$CI_BUILD_REF_NAME +BRANCH="beta" GIT_PARITY="https://${GITHUB_JS_PRECOMPILED}:@github.com/paritytech/parity.git" echo "*** [cargo] Setting up GitHub config for parity" diff --git a/js/scripts/push-precompiled.sh b/js/scripts/push-precompiled.sh index bd26e147a..22a3f34f3 100755 --- a/js/scripts/push-precompiled.sh +++ b/js/scripts/push-precompiled.sh @@ -4,8 +4,9 @@ set -e # variables PVER="1-9" PTYPE="shell" +TRACK="beta" UTCDATE=`date -u "+%Y%m%d-%H%M%S"` -PRE_REPO="js-dist-paritytech/parity-${CI_BUILD_REF_NAME}-${PVER}-${PTYPE}.git" +PRE_REPO="js-dist-paritytech/parity-${TRACK}-${PVER}-${PTYPE}.git" PRE_REPO_TOKEN="https://${GITHUB_JS_PRECOMPILED}:@github.com/${PRE_REPO}" BASEDIR=`dirname $0`