Skip to content

Commit

Permalink
Merge pull request #78 from doomchild/feature/issue-77
Browse files Browse the repository at this point in the history
Issue-77: Fix promote script to correctly supply next version number
  • Loading branch information
doomchild authored Jul 26, 2024
2 parents b031d6f + 1f5fc30 commit abe433e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ci/promote
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ __has_matching_counts () {
__update_version () {
local nextVersion=${1}

jq '.version = "${nextVersion}"' "${PROJECT_HOME}/project-metadata.json" > "${PROJECT_HOME}/temp-metadata.json" \
jq '.version = ${nextVersion}' "${PROJECT_HOME}/project-metadata.json" > "${PROJECT_HOME}/temp-metadata.json" \
&& mv "${PROJECT_HOME}/temp-metadata.json" "${PROJECT_HOME}/project-metadata.json"
}

Expand Down

0 comments on commit abe433e

Please sign in to comment.