Skip to content

Commit

Permalink
Merge pull request #2130 from martina-if/fix-tag-release
Browse files Browse the repository at this point in the history
Fix tag-release-candidate.sh script. Push release branch
  • Loading branch information
martina-if authored May 5, 2020
2 parents f3596e9 + 9e97a89 commit 597ea9c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tag-release-candidate.sh
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,11 @@ git add "${RELEASE_NOTES_FILE}"

m="Tag ${full_version} release candidate"

# Push branch
git commit --message "${m}"
git push origin "${release_branch}"

# Push tags
git tag --annotate --message "${m}" --force "latest_release"
git tag --annotate --message "${m}" "${full_version}"
git push origin "${full_version}"
Expand Down

0 comments on commit 597ea9c

Please sign in to comment.