Archived
1
0

chore(release): bump version to 3.10.0

This commit is contained in:
Akash Satheesan
2021-05-11 01:39:44 +05:30
parent 30daa33c7f
commit d17c97c9cd
8 changed files with 15 additions and 15 deletions

View File

@ -56,7 +56,7 @@ get_artifacts_url() {
local artifacts_url
local workflow_runs_url="repos/:owner/:repo/actions/workflows/ci.yaml/runs?status=success&event=pull_request"
# For releases, we look for run based on the branch name v$code_server_version
# example: v3.9.3
# example: v3.10.0
local version_branch="v$VERSION"
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