Skip to content

Commit

Permalink
fix(release): correctly enable semantic commit conventions
Browse files Browse the repository at this point in the history
  • Loading branch information
DanySK committed Jan 6, 2022
1 parent 24a0460 commit e08d5bf
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 14 deletions.
14 changes: 0 additions & 14 deletions .releaserc.yml

This file was deleted.

17 changes: 17 additions & 0 deletions release.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
var publishCmd = `
git tag -a -f \${nextRelease.version} \${nextRelease.version} -F CHANGELOG.md
git push --force origin \${nextRelease.version}
./gradlew releaseKotlinMavenOnMavenCentralNexus
`
var config = require('semantic-release-preconfigured-conventional-commits');
config.plugins.push(
[
"@semantic-release/exec",
{
"publishCmd": publishCmd,
}
],
"@semantic-release/github",
"@semantic-release/git",
)
module.exports = config

0 comments on commit e08d5bf

Please sign in to comment.