ci: fix problem with incorrect release commit messages

This commit is contained in:
Johannes Loher 2021-09-14 19:01:53 +02:00
parent 7ab3d20b32
commit 60119b1332

View file

@ -107,7 +107,7 @@ changelog:
RELEASE_VERSION=$(jq -r '.version' < package.json)
git add package.json src/system.json
git --no-pager diff
git commit -m "release version ${RELEASE_VERSION}"
git commit -m "chore(release): ${RELEASE_VERSION}"
git tag -f ${RELEASE_VERSION}
git push origin ci-processing:${CI_BUILD_REF_NAME} -o ci.skip
git push origin ${RELEASE_VERSION}