Skip to content

Commit

Permalink
fix(release): provide a valid tag message
Browse files Browse the repository at this point in the history
  • Loading branch information
DanySK committed Feb 27, 2022
1 parent a14ac97 commit 9afd864
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions release.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ git push --force origin \${nextRelease.version} || exit 1
mv update-site/.git protelis.parser.repository/target/.git
git -C protelis.parser.repository/target/ add . || exit 4
git -C protelis.parser.repository/target/ commit -m "chore: update update site to version \${nextRelease.version}" || exit 5
git -C protelis.parser.repository/target/ tag -a "\${nextRelease.version}" -F CHANGELOG.md || exit 6
git -C protelis.parser.repository/target/ push --follow-tags || exit 6
git -C protelis.parser.repository/target/ tag -a "\${nextRelease.version}" -m "\${nextRelease.version}" || exit 6
git -C protelis.parser.repository/target/ push --follow-tags || exit 7
`
var config = require('semantic-release-preconfigured-conventional-commits');
config.plugins.push(
Expand Down

0 comments on commit 9afd864

Please sign in to comment.