Skip to content

Commit 651710a

Browse files
Add debug token file #TASK-8067
1 parent 58ee920 commit 651710a

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/debug-token.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
xetabase_branch=$(./.github/workflows/scripts/get_opencga_enterprise_branch.sh "java-common-libs" "develop" "TASK-8067")
5252
echo "__CI CORE Xetabase ref:__ \"${xetabase_branch}\"" | tee -a ${GITHUB_STEP_SUMMARY}
5353
REPO_URI="https://$ZETTA_REPO_ACCESS_TOKEN@github.com/zetta-genomics/opencga-enterprise.git"
54-
echo "$(git ls-remote $REPO_URI TASK-8067)"
54+
echo "$(git ls-remote "$REPO_URI" "TASK-8067")"
5555
env:
5656
ZETTA_REPO_ACCESS_TOKEN: ${{ env.ZETTA_REPO_ACCESS_TOKEN }}
5757

.github/workflows/scripts/get_opencga_enterprise_branch.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ REPO_URI="https://$ZETTA_REPO_ACCESS_TOKEN@github.com/zetta-genomics/opencga-ent
2222

2323
# 1. If the branch begins with 'TASK' and exists in the opencga-enterprise repository, return it
2424
if [[ $head_ref == TASK* ]]; then
25-
if [ "$(git ls-remote $REPO_URI $head_ref)" ] ; then
25+
if [ "$(git ls-remote '$REPO_URI' '$head_ref')" ] ; then
2626
echo "$head_ref";
2727
exit 0
2828
fi

0 commit comments

Comments
 (0)