From 9ef6680adc919b69d68e1e580779d307c2463819 Mon Sep 17 00:00:00 2001 From: Asher Date: Fri, 16 Jul 2021 17:37:26 -0500 Subject: [PATCH] Fix incorrect version var in artifact script --- ci/lib.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/lib.sh b/ci/lib.sh index 39e1a3ec..5021f99e 100755 --- a/ci/lib.sh +++ b/ci/lib.sh @@ -62,7 +62,7 @@ get_artifacts_url() { artifacts_url=$(gh api "$workflow_runs_url" | jq -r ".workflow_runs[] | select(.head_branch == \"$version_branch\") | .artifacts_url" | head -n 1) if [[ -z "$artifacts_url" ]]; then echo >&2 "ERROR: artifacts_url came back empty" - echo >&2 "We looked for a successful run triggered by a pull_request with for code-server version: $code_server_version and a branch named $version_branch" + echo >&2 "We looked for a successful run triggered by a pull_request with for code-server version: $VERSION and a branch named $version_branch" echo >&2 "URL used for gh API call: $workflow_runs_url" exit 1 fi -- GitLab