Skip to content

Commit

Permalink
fix release title uppercasing
Browse files Browse the repository at this point in the history
  • Loading branch information
TobyDrane committed Feb 6, 2024
1 parent 4b85157 commit d4c2068
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -186,15 +186,16 @@ ui-release:

ui-zip-and-release: ui-zip-contents ui-release ## Zip and release prod static ui site

RELEASE_TYPE_UC=$(shell echo ${type} | tr '[:lower:]' '[:upper:]')
release:
@python release.py --operation check --type ${type}
@git checkout ${commit}
@git tag -a "${version}" -m "Release tag for version ${version}"
@git checkout -
@git push origin ${version}
@python release.py --operation create-changelog --type ${type}
@gh release create ${version} -F latest_release_changelog_${type}.md -t "${type^^} ${version}"
@rm -rf latest_release_changelog_${type}.mds
@gh release create ${version} -F latest_release_changelog_${type}.md -t "$(RELEASE_TYPE_UC): ${version}"
@rm -rf latest_release_changelog_${type}.md

# Migration --------------------
##
Expand Down

0 comments on commit d4c2068

Please sign in to comment.