Skip to content

Commit

Permalink
Issue-77: Fix promote script to correctly supply next version number
Browse files Browse the repository at this point in the history
closes #77
SemVer:Patch
  • Loading branch information
doomchild committed Jul 26, 2024
1 parent b031d6f commit 1f5fc30
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 1f5fc30

Please sign in to comment.